aswi2020vldc-gitlab/templetes/node_modules/es-abstract/helpers/isPrimitive.js @ 56f6c6df
1 |
'use strict'; |
---|---|
2 |
|
3 |
module.exports = function isPrimitive(value) { |
4 |
return value === null || (typeof value !== 'function' && typeof value !== 'object'); |
5 |
};
|