Files
feedstr.live/node_modules/es-abstract/helpers/isStringOrUndefined.js
T
2023-11-25 18:12:47 -05:00

6 lines
137 B
JavaScript

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