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