import { shouldPolyfill } from "./should-polyfill.js";
import { supportedValuesOf } from "./src";
if (shouldPolyfill()) {
Object.defineProperty(Intl, "supportedValuesOf", {
value: supportedValuesOf,
enumerable: true,
writable: false,
configurable: false
});
}