mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 04:10:40 -07:00
7 lines
164 B
TypeScript
7 lines
164 B
TypeScript
export function throwIntendedError () {
|
|
throw new Error('intended error')
|
|
}
|
|
export async function rejectIntendedError () {
|
|
throw new Error('intended reject')
|
|
}
|