We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52fe833 commit 95ea890Copy full SHA for 95ea890
packages/utils/src/index.js
@@ -1,3 +1,4 @@
1
export { isNull } from './is_null.js';
2
export { isNumber } from './is_number.js';
3
export { isUndefined } from './is_undefined.js';
4
+export { isString } from './is_string.js';
packages/utils/src/is_string.js
@@ -0,0 +1,3 @@
+export function isString(v) {
+ return typeof v === 'string';
+}
0 commit comments