features.js 217 B

123456
  1. define(["requirejs-dplugins/has"], function (has) {
  2. has.add("intl-api", function (global) {
  3. return typeof global.Intl !== "undefined" && global.Intl.NumberFormat && global.Intl.DateTimeFormat;
  4. });
  5. return has;
  6. });