Criada a API do site
This commit is contained in:
21
node_modules/is-what/dist/isPrimitive.js
generated
vendored
Normal file
21
node_modules/is-what/dist/isPrimitive.js
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
import { isBigInt } from './isBigInt.js';
|
||||
import { isBoolean } from './isBoolean.js';
|
||||
import { isNull } from './isNull.js';
|
||||
import { isNumber } from './isNumber.js';
|
||||
import { isString } from './isString.js';
|
||||
import { isSymbol } from './isSymbol.js';
|
||||
import { isUndefined } from './isUndefined.js';
|
||||
/**
|
||||
* Returns whether the payload is a primitive type (eg. Boolean | Null | Undefined | Number | String
|
||||
*
|
||||
* | Symbol)
|
||||
*/
|
||||
export function isPrimitive(payload) {
|
||||
return (isBoolean(payload) ||
|
||||
isNull(payload) ||
|
||||
isUndefined(payload) ||
|
||||
isNumber(payload) ||
|
||||
isString(payload) ||
|
||||
isSymbol(payload) ||
|
||||
isBigInt(payload));
|
||||
}
|
||||
Reference in New Issue
Block a user