mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-18 14:59:29 +00:00
13 lines
231 B
JavaScript
13 lines
231 B
JavaScript
/**
|
|
* Utility functions for Strings
|
|
*/
|
|
|
|
/**
|
|
* Test whether value is a String
|
|
* @param {*} value
|
|
* @return {Boolean} isString
|
|
*/
|
|
function isString(value) {
|
|
return (value instanceof String) || (typeof value == 'string');
|
|
}
|