Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
21
Frontend-Learner/node_modules/is-what/dist/isPrimitive.js
generated
vendored
Normal file
21
Frontend-Learner/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));
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue