blob: aac2ee3afeb7010f7a98d433937591af79a393c1 [file] [log] [blame]
function isString(input) {
if (typeof input === 'string') {
return true;
} else {
return false;
}
}
exports.isString = isString;