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