feat:node-modules

This commit is contained in:
houjunxiang
2025-11-24 10:26:18 +08:00
parent 753766893b
commit 8a3e48d856
8825 changed files with 567399 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.acosDocs = void 0;
const acosDocs = exports.acosDocs = {
name: 'acos',
category: 'Trigonometry',
syntax: ['acos(x)'],
description: 'Compute the inverse cosine of a value in radians.',
examples: ['acos(0.5)', 'acos(cos(2.3))'],
seealso: ['cos', 'atan', 'asin']
};

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.acoshDocs = void 0;
const acoshDocs = exports.acoshDocs = {
name: 'acosh',
category: 'Trigonometry',
syntax: ['acosh(x)'],
description: 'Calculate the hyperbolic arccos of a value, defined as `acosh(x) = ln(sqrt(x^2 - 1) + x)`.',
examples: ['acosh(1.5)'],
seealso: ['cosh', 'asinh', 'atanh']
};

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.acotDocs = void 0;
const acotDocs = exports.acotDocs = {
name: 'acot',
category: 'Trigonometry',
syntax: ['acot(x)'],
description: 'Calculate the inverse cotangent of a value.',
examples: ['acot(0.5)', 'acot(cot(0.5))', 'acot(2)'],
seealso: ['cot', 'atan']
};

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.acothDocs = void 0;
const acothDocs = exports.acothDocs = {
name: 'acoth',
category: 'Trigonometry',
syntax: ['acoth(x)'],
description: 'Calculate the inverse hyperbolic tangent of a value, defined as `acoth(x) = (ln((x+1)/x) + ln(x/(x-1))) / 2`.',
examples: ['acoth(2)', 'acoth(0.5)'],
seealso: ['acsch', 'asech']
};

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.acscDocs = void 0;
const acscDocs = exports.acscDocs = {
name: 'acsc',
category: 'Trigonometry',
syntax: ['acsc(x)'],
description: 'Calculate the inverse cotangent of a value.',
examples: ['acsc(2)', 'acsc(csc(0.5))', 'acsc(0.5)'],
seealso: ['csc', 'asin', 'asec']
};

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.acschDocs = void 0;
const acschDocs = exports.acschDocs = {
name: 'acsch',
category: 'Trigonometry',
syntax: ['acsch(x)'],
description: 'Calculate the inverse hyperbolic cosecant of a value, defined as `acsch(x) = ln(1/x + sqrt(1/x^2 + 1))`.',
examples: ['acsch(0.5)'],
seealso: ['asech', 'acoth']
};

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.asecDocs = void 0;
const asecDocs = exports.asecDocs = {
name: 'asec',
category: 'Trigonometry',
syntax: ['asec(x)'],
description: 'Calculate the inverse secant of a value.',
examples: ['asec(0.5)', 'asec(sec(0.5))', 'asec(2)'],
seealso: ['acos', 'acot', 'acsc']
};

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.asechDocs = void 0;
const asechDocs = exports.asechDocs = {
name: 'asech',
category: 'Trigonometry',
syntax: ['asech(x)'],
description: 'Calculate the inverse secant of a value.',
examples: ['asech(0.5)'],
seealso: ['acsch', 'acoth']
};

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.asinDocs = void 0;
const asinDocs = exports.asinDocs = {
name: 'asin',
category: 'Trigonometry',
syntax: ['asin(x)'],
description: 'Compute the inverse sine of a value in radians.',
examples: ['asin(0.5)', 'asin(sin(0.5))'],
seealso: ['sin', 'acos', 'atan']
};

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.asinhDocs = void 0;
const asinhDocs = exports.asinhDocs = {
name: 'asinh',
category: 'Trigonometry',
syntax: ['asinh(x)'],
description: 'Calculate the hyperbolic arcsine of a value, defined as `asinh(x) = ln(x + sqrt(x^2 + 1))`.',
examples: ['asinh(0.5)'],
seealso: ['acosh', 'atanh']
};

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.atanDocs = void 0;
const atanDocs = exports.atanDocs = {
name: 'atan',
category: 'Trigonometry',
syntax: ['atan(x)'],
description: 'Compute the inverse tangent of a value in radians.',
examples: ['atan(0.5)', 'atan(tan(0.5))'],
seealso: ['tan', 'acos', 'asin']
};

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.atan2Docs = void 0;
const atan2Docs = exports.atan2Docs = {
name: 'atan2',
category: 'Trigonometry',
syntax: ['atan2(y, x)'],
description: 'Computes the principal value of the arc tangent of y/x in radians.',
examples: ['atan2(2, 2) / pi', 'angle = 60 deg in rad', 'x = cos(angle)', 'y = sin(angle)', 'atan2(y, x)'],
seealso: ['sin', 'cos', 'tan']
};

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.atanhDocs = void 0;
const atanhDocs = exports.atanhDocs = {
name: 'atanh',
category: 'Trigonometry',
syntax: ['atanh(x)'],
description: 'Calculate the hyperbolic arctangent of a value, defined as `atanh(x) = ln((1 + x)/(1 - x)) / 2`.',
examples: ['atanh(0.5)'],
seealso: ['acosh', 'asinh']
};

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.cosDocs = void 0;
const cosDocs = exports.cosDocs = {
name: 'cos',
category: 'Trigonometry',
syntax: ['cos(x)'],
description: 'Compute the cosine of x in radians.',
examples: ['cos(2)', 'cos(pi / 4) ^ 2', 'cos(180 deg)', 'cos(60 deg)', 'sin(0.2)^2 + cos(0.2)^2'],
seealso: ['acos', 'sin', 'tan']
};

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.coshDocs = void 0;
const coshDocs = exports.coshDocs = {
name: 'cosh',
category: 'Trigonometry',
syntax: ['cosh(x)'],
description: 'Compute the hyperbolic cosine of x in radians.',
examples: ['cosh(0.5)'],
seealso: ['sinh', 'tanh', 'coth']
};

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.cotDocs = void 0;
const cotDocs = exports.cotDocs = {
name: 'cot',
category: 'Trigonometry',
syntax: ['cot(x)'],
description: 'Compute the cotangent of x in radians. Defined as 1/tan(x)',
examples: ['cot(2)', '1 / tan(2)'],
seealso: ['sec', 'csc', 'tan']
};

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.cothDocs = void 0;
const cothDocs = exports.cothDocs = {
name: 'coth',
category: 'Trigonometry',
syntax: ['coth(x)'],
description: 'Compute the hyperbolic cotangent of x in radians.',
examples: ['coth(2)', '1 / tanh(2)'],
seealso: ['sech', 'csch', 'tanh']
};

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.cscDocs = void 0;
const cscDocs = exports.cscDocs = {
name: 'csc',
category: 'Trigonometry',
syntax: ['csc(x)'],
description: 'Compute the cosecant of x in radians. Defined as 1/sin(x)',
examples: ['csc(2)', '1 / sin(2)'],
seealso: ['sec', 'cot', 'sin']
};

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.cschDocs = void 0;
const cschDocs = exports.cschDocs = {
name: 'csch',
category: 'Trigonometry',
syntax: ['csch(x)'],
description: 'Compute the hyperbolic cosecant of x in radians. Defined as 1/sinh(x)',
examples: ['csch(2)', '1 / sinh(2)'],
seealso: ['sech', 'coth', 'sinh']
};

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.secDocs = void 0;
const secDocs = exports.secDocs = {
name: 'sec',
category: 'Trigonometry',
syntax: ['sec(x)'],
description: 'Compute the secant of x in radians. Defined as 1/cos(x)',
examples: ['sec(2)', '1 / cos(2)'],
seealso: ['cot', 'csc', 'cos']
};

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.sechDocs = void 0;
const sechDocs = exports.sechDocs = {
name: 'sech',
category: 'Trigonometry',
syntax: ['sech(x)'],
description: 'Compute the hyperbolic secant of x in radians. Defined as 1/cosh(x)',
examples: ['sech(2)', '1 / cosh(2)'],
seealso: ['coth', 'csch', 'cosh']
};

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.sinDocs = void 0;
const sinDocs = exports.sinDocs = {
name: 'sin',
category: 'Trigonometry',
syntax: ['sin(x)'],
description: 'Compute the sine of x in radians.',
examples: ['sin(2)', 'sin(pi / 4) ^ 2', 'sin(90 deg)', 'sin(30 deg)', 'sin(0.2)^2 + cos(0.2)^2'],
seealso: ['asin', 'cos', 'tan']
};

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.sinhDocs = void 0;
const sinhDocs = exports.sinhDocs = {
name: 'sinh',
category: 'Trigonometry',
syntax: ['sinh(x)'],
description: 'Compute the hyperbolic sine of x in radians.',
examples: ['sinh(0.5)'],
seealso: ['cosh', 'tanh']
};

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.tanDocs = void 0;
const tanDocs = exports.tanDocs = {
name: 'tan',
category: 'Trigonometry',
syntax: ['tan(x)'],
description: 'Compute the tangent of x in radians.',
examples: ['tan(0.5)', 'sin(0.5) / cos(0.5)', 'tan(pi / 4)', 'tan(45 deg)'],
seealso: ['atan', 'sin', 'cos']
};

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.tanhDocs = void 0;
const tanhDocs = exports.tanhDocs = {
name: 'tanh',
category: 'Trigonometry',
syntax: ['tanh(x)'],
description: 'Compute the hyperbolic tangent of x in radians.',
examples: ['tanh(0.5)', 'sinh(0.5) / cosh(0.5)'],
seealso: ['sinh', 'cosh']
};