MCPcopy Create free account
hub / github.com/microsoft/SandDance / selectExact

Function selectExact

docs/tests/v2/es6/js/sanddance.js:148836–148847  ·  view source on GitHub ↗
(column, value)

Source from the content-addressed store, hash-verified

148834}
148835
148836function selectExact(column, value) {
148837 if (value == null) {
148838 return selectNullOrEmpty(column);
148839 }
148840
148841 const searchExpression = {
148842 name: column.name,
148843 operator: '==',
148844 value
148845 };
148846 return searchExpression;
148847}
148848
148849function selectNone(column, values) {
148850 const expressions = values.map((value, i) => {

Callers 1

selectExactAxisFunction · 0.70

Calls 1

selectNullOrEmptyFunction · 0.70

Tested by

no test coverage detected