mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 12:59:30 +08:00
18 lines
388 B
Text
18 lines
388 B
Text
'use strict';
|
|
|
|
var define = require('define-properties');
|
|
var callBind = require('call-bind');
|
|
|
|
var implementation = require('./implementation');
|
|
var getPolyfill = require('./polyfill');
|
|
var shim = require('./shim');
|
|
|
|
var flagsBound = callBind(getPolyfill());
|
|
|
|
define(flagsBound, {
|
|
getPolyfill: getPolyfill,
|
|
implementation: implementation,
|
|
shim: shim
|
|
});
|
|
|
|
module.exports = flagsBound;
|