Newer
Older
2022-autumn-study / node_modules / es5-ext / math / trunc / implement.js
@ItoRino ItoRino on 4 Oct 2022 188 bytes first commit
"use strict";

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