dotfiles/vscode/.vscode/extensions/matangover.mypy-0.3.1/node_modules/es-abstract/helpers/isPrimitive.js
Errol Sancaktar 5f8db31398 alacritty
2024-07-15 17:06:13 -06:00

6 lines
151 B
JavaScript

'use strict';
module.exports = function isPrimitive(value) {
return value === null || (typeof value !== 'function' && typeof value !== 'object');
};