aboutsummaryrefslogtreecommitdiff
path: root/node_modules/es5-ext/math/log1p/implement.js
blob: 36fcee61992fc1d1877f45ad3c3f42af043144d4 (plain)
1
2
3
4
5
6
7
8
"use strict";

if (!require("./is-implemented")()) {
	Object.defineProperty(Math, "log1p", { value: require("./shim"),
		configurable: true,
enumerable: false,
writable: true });
}