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

Function valueToString

docs/tests/v2/es6/js/sanddance.js:153021–153036  ·  view source on GitHub ↗
(value)

Source from the content-addressed store, hash-verified

153019}
153020
153021function valueToString(value) {
153022 if (value == null) {
153023 return '';
153024 }
153025
153026 switch (typeof value) {
153027 case 'string':
153028 return value;
153029
153030 case 'boolean':
153031 case 'number':
153032 return value.toString();
153033 }
153034
153035 return '';
153036}
153037
153038function isStringOperation(ex) {
153039 switch (ex.operator) {

Callers 2

constructorMethod · 0.70
runExpressionOnColumnMethod · 0.70

Calls 1

toStringMethod · 0.45

Tested by

no test coverage detected