i.js (402B)
1 "use strict"; 2 3 Object.defineProperty(exports, "__esModule", { 4 value: true 5 }); 6 exports.iDocs = void 0; 7 var iDocs = { 8 name: 'i', 9 category: 'Constants', 10 syntax: ['i'], 11 description: 'Imaginary unit, defined as i*i=-1. A complex number is described as a + b*i, where a is the real part, and b is the imaginary part.', 12 examples: ['i', 'i * i', 'sqrt(-1)'], 13 seealso: [] 14 }; 15 exports.iDocs = iDocs;