MCPcopy Index your code
hub / github.com/alibaba/lowcode-engine / equalText

Function equalText

packages/engine/src/modules/live-editing.ts:46–52  ·  view source on GitHub ↗
(v: any, innerText: string)

Source from the content-addressed store, hash-verified

44}
45
46function equalText(v: any, innerText: string) {
47 // TODO: enhance compare text logic
48 if (typeof v !== 'string') {
49 return false;
50 }
51 return v.trim() === innerText;
52}
53
54export const liveEditingSaveHander: SaveHandler = {
55 condition: (prop) => {

Callers 1

liveEditingRuleFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…