astock-agent/frontend/node_modules/es-abstract/helpers/isStringOrUndefined.js
2026-04-07 20:51:00 +08:00

6 lines
137 B
JavaScript

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