simple-squiggle/node_modules/mathjs/lib/cjs/expression/embeddedDocs/construction/string.js

15 lines
458 B
JavaScript
Raw Normal View History

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.stringDocs = void 0;
var stringDocs = {
name: 'string',
category: 'Construction',
syntax: ['"text"', 'string(x)'],
description: 'Create a string or convert a value to a string',
examples: ['"Hello World!"', 'string(4.2)', 'string(3 + 2i)'],
seealso: ['bignumber', 'boolean', 'complex', 'index', 'matrix', 'number', 'unit']
};
exports.stringDocs = stringDocs;