ffcreator
Version:
FFCreator is a lightweight and flexible short video production library
18 lines (14 loc) • 310 B
JavaScript
;
/**
* Polyfill - any Polyfill methods in node.js environment
*
* @function
*/
const { isNode } = require('browser-or-node');
// const fixRequestAnimationFrame = require('./raf');
const Polyfill = () => {
if (isNode) {
// fixRequestAnimationFrame();
}
};
module.exports = Polyfill;