forked from lix-project/lix-website
6 lines
137 B
JavaScript
6 lines
137 B
JavaScript
|
'use strict';
|
||
|
|
||
|
module.exports = function isStringOrUndefined(item) {
|
||
|
return typeof item === 'string' || typeof item === 'undefined';
|
||
|
};
|