homepage/node_modules/es-abstract/helpers/isStringOrUndefined.js
2024-11-03 17:16:20 +01:00

6 lines
137 B
JavaScript

'use strict';
module.exports = function isStringOrUndefined(item) {
return typeof item === 'string' || typeof item === 'undefined';
};