Newer
Older
2022-autumn-study / node_modules / es5-ext / number / max-safe-integer / implement.js
@ItoRino ItoRino on 4 Oct 2022 199 bytes first commit
"use strict";

if (!require("./is-implemented")()) {
	Object.defineProperty(Number, "MAX_SAFE_INTEGER", {
		value: require("./"),
		configurable: false,
		enumerable: false,
		writable: false
	});
}