/opt/canhelp/node_modules/kysely/dist/esm/util
Edit: /opt/canhelp/node_modules/kysely/dist/esm/util/assert.js (353B)
///
export function assertNotNullOrUndefined(value) {
if (value === null || value === undefined) {
throw new Error(`${value} must not be null or undefined`);
}
}
export function assertIsString(value) {
if (typeof value !== 'string') {
throw new Error(`${value} must be a string`);
}
}