Sha256: d271922837837960e7f76fbca792595be48caf0bec883a9c9d5ae374102a7dfc

Contents?: true

Size: 515 Bytes

Versions: 46

Compression:

Stored size: 515 Bytes

Contents

// Parts of implementation taken from es6-shim project
// See: https://github.com/paulmillr/es6-shim/blob/master/es6-shim.js

"use strict";

var expm1 = require("../expm1")
  , abs   = Math.abs
  , exp   = Math.exp
  , e     = Math.E;

module.exports = function (value) {
	if (isNaN(value)) return NaN;
	value = Number(value);
	if (value === 0) return value;
	if (!isFinite(value)) return value;
	if (abs(value) < 1) return (expm1(value) - expm1(-value)) / 2;
	return (exp(value - 1) - exp(-value - 1)) * e / 2;
};

Version data entries

46 entries across 46 versions & 3 rubygems

Version Path
govuk_publishing_components-18.0.0 node_modules/es5-ext/math/sinh/shim.js
govuk_publishing_components-17.21.0 node_modules/es5-ext/math/sinh/shim.js
govuk_publishing_components-17.20.0 node_modules/es5-ext/math/sinh/shim.js
govuk_publishing_components-17.19.1 node_modules/es5-ext/math/sinh/shim.js
govuk_publishing_components-17.19.0 node_modules/es5-ext/math/sinh/shim.js
govuk_publishing_components-17.18.0 node_modules/es5-ext/math/sinh/shim.js
govuk_publishing_components-17.17.0 node_modules/es5-ext/math/sinh/shim.js
govuk_publishing_components-17.16.0 node_modules/es5-ext/math/sinh/shim.js
govuk_publishing_components-17.15.0 node_modules/es5-ext/math/sinh/shim.js
govuk_publishing_components-17.14.0 node_modules/es5-ext/math/sinh/shim.js
govuk_publishing_components-17.13.0 node_modules/es5-ext/math/sinh/shim.js
govuk_publishing_components-17.12.2 node_modules/es5-ext/math/sinh/shim.js
govuk_publishing_components-17.12.1 node_modules/es5-ext/math/sinh/shim.js
govuk_publishing_components-17.12.0 node_modules/es5-ext/math/sinh/shim.js
govuk_publishing_components-17.11.0 node_modules/es5-ext/math/sinh/shim.js
govuk_publishing_components-17.10.0 node_modules/es5-ext/math/sinh/shim.js
govuk_publishing_components-17.9.0 node_modules/es5-ext/math/sinh/shim.js
govuk_publishing_components-17.8.0 node_modules/es5-ext/math/sinh/shim.js
govuk_publishing_components-17.7.0 node_modules/es5-ext/math/sinh/shim.js
govuk_publishing_components-17.6.1 node_modules/es5-ext/math/sinh/shim.js