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']
};

Some files were not shown because too many files have changed in this diff Show More