string.js (458B)
1 "use strict"; 2 3 Object.defineProperty(exports, "__esModule", { 4 value: true 5 }); 6 exports.stringDocs = void 0; 7 var stringDocs = { 8 name: 'string', 9 category: 'Construction', 10 syntax: ['"text"', 'string(x)'], 11 description: 'Create a string or convert a value to a string', 12 examples: ['"Hello World!"', 'string(4.2)', 'string(3 + 2i)'], 13 seealso: ['bignumber', 'boolean', 'complex', 'index', 'matrix', 'number', 'unit'] 14 }; 15 exports.stringDocs = stringDocs;