react-native-web-headroom
Version:
React Native Web Headroom
20 lines (14 loc) • 435 B
JavaScript
;
var define = require('define-properties');
var bind = require('function-bind');
var implementation = require('./implementation');
var getPolyfill = require('./polyfill');
var polyfill = getPolyfill();
var shim = require('./shim');
var boundFlatten = bind.call(Function.call, polyfill);
define(boundFlatten, {
getPolyfill: getPolyfill,
implementation: implementation,
shim: shim
});
module.exports = boundFlatten;