aboutsummaryrefslogtreecommitdiff
path: root/node_modules/es5-ext/test/math/sinh/implement.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/es5-ext/test/math/sinh/implement.js')
-rw-r--r--node_modules/es5-ext/test/math/sinh/implement.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/node_modules/es5-ext/test/math/sinh/implement.js b/node_modules/es5-ext/test/math/sinh/implement.js
new file mode 100644
index 00000000..ca4b5e7b
--- /dev/null
+++ b/node_modules/es5-ext/test/math/sinh/implement.js
@@ -0,0 +1,7 @@
+"use strict";
+
+var isImplemented = require("../../../math/sinh/is-implemented");
+
+module.exports = function (a) {
+ a(isImplemented(), true);
+};