6 lines
88 B
JavaScript
6 lines
88 B
JavaScript
function isString(arg){
|
|
return typeof arg==='string';
|
|
}
|
|
|
|
export default isString;
|