UNPKG

@cran/lib.vue.ref

Version:

Vue Reactivity Extensions

16 lines (15 loc) 398 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.useAcosh = void 0; const utility_1 = require("../utility"); /** * @since 0.0.1 * @category Math * @inheritdoc Math.acosh */ function useAcosh(input) { return (0, utility_1.eagerComputed)(function computes() { return Math.acosh((0, utility_1.unwrap)(input)); }); } exports.useAcosh = useAcosh;