string.js 458 B

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