mirror of
https://github.com/xfarrow/blink
synced 2025-06-27 09:03:02 +02:00
Change endpoint from persons to people
This commit is contained in:
32
backend/apis/nodejs/node_modules/knex/lib/util/is.js
generated
vendored
Normal file
32
backend/apis/nodejs/node_modules/knex/lib/util/is.js
generated
vendored
Normal file
@ -0,0 +1,32 @@
|
||||
function isString(value) {
|
||||
return typeof value === 'string';
|
||||
}
|
||||
|
||||
function isNumber(value) {
|
||||
return typeof value === 'number';
|
||||
}
|
||||
|
||||
function isBoolean(value) {
|
||||
return typeof value === 'boolean';
|
||||
}
|
||||
|
||||
function isUndefined(value) {
|
||||
return typeof value === 'undefined';
|
||||
}
|
||||
|
||||
function isObject(value) {
|
||||
return typeof value === 'object' && value !== null;
|
||||
}
|
||||
|
||||
function isFunction(value) {
|
||||
return typeof value === 'function';
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
isString,
|
||||
isNumber,
|
||||
isBoolean,
|
||||
isUndefined,
|
||||
isObject,
|
||||
isFunction,
|
||||
};
|
Reference in New Issue
Block a user