MCPcopy Create free account
hub / github.com/alibaba/lowcode-engine / isString

Function isString

packages/utils/src/css-helper.ts:35–37  ·  view source on GitHub ↗
(str: any)

Source from the content-addressed store, hash-verified

33}
34
35function isString(str: any): str is string {
36 return {}.toString.call(str) === '[object String]';
37}
38
39function hyphenate(str: string): string {
40 return str.replace(RE_CAMEL, w => `-${w}`).toLowerCase();

Callers 1

cssToStyleFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…