MCPcopy Index your code
hub / github.com/dataease/SQLBot / seqFromValue

Function seqFromValue

frontend/public/swagger-ui-bundle.js:1717–1724  ·  view source on GitHub ↗
(s)

Source from the content-addressed store, hash-verified

1715 return o
1716 }
1717 function seqFromValue(s) {
1718 var o = maybeIndexedSeqFromValue(s) || ('object' == typeof s && new ObjectSeq(s))
1719 if (!o)
1720 throw new TypeError(
1721 'Expected Array or iterable object of values, or keyed object: ' + s
1722 )
1723 return o
1724 }
1725 function maybeIndexedSeqFromValue(s) {
1726 return isArrayLike(s)
1727 ? new ArraySeq(s)

Callers 1

SeqFunction · 0.85

Calls 1

maybeIndexedSeqFromValueFunction · 0.85

Tested by

no test coverage detected