@tetcoin/util
Version:
A collection of useful utilities for @tetcoin
28 lines (25 loc) • 677 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = isString;
// Copyright 2017-2019 @polkadot/util authors & contributors
// This software may be modified and distributed under the terms
// of the Apache-2.0 license. See the LICENSE file for details.
/**
* @name isString
* @summary Tests for a string.
* @description
* Checks to see if the input value is a JavaScript string.
* @example
* <BR>
*
* ```javascript
* import { isString } from '@tetcoin/util';
*
* console.log('isString', isString('test')); // => true
* ```
*/
function isString(value) {
return typeof value === 'string' || value instanceof String;
}