mirror of
https://github.com/catppuccin/obsidian.git
synced 2026-07-22 03:10:26 +00:00
3 lines
95 B
JavaScript
3 lines
95 B
JavaScript
module.exports = function isString(str) {
|
|
return str && typeof str.valueOf() === 'string';
|
|
};
|