mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-14 22:12:51 +00:00
4 lines
95 B
JavaScript
4 lines
95 B
JavaScript
module.exports = function isString(str) {
|
|
return str && typeof str.valueOf() === 'string';
|
|
};
|