Comparing version 0.0.13 to 0.0.14
@@ -5,2 +5,2 @@ "use strict"; | ||
module.exports = nativeRequestAnimationFrame.bind(global); | ||
module.exports = nativeRequestAnimationFrame; |
@@ -11,3 +11,3 @@ 'use strict'; | ||
*/ | ||
var requestAnimationFrame = nativeRequestAnimationFrame || function (callback) { | ||
var requestAnimationFrame = nativeRequestAnimationFrame && nativeRequestAnimationFrame.bind(global) || function (callback) { | ||
var currTime = Date.now(); | ||
@@ -14,0 +14,0 @@ var timeDelay = Math.max(0, 16 - (currTime - lastTime)); |
{ | ||
"name": "dom-lib", | ||
"version": "0.0.13", | ||
"version": "0.0.14", | ||
"description": "DOM helper library", | ||
@@ -26,3 +26,2 @@ "main": "lib/index.js", | ||
"babel-loader": "^6.2.4", | ||
"babel-plugin-transform-class-constructor-call": "^6.8.0", | ||
"babel-plugin-transform-es2015-classes": "^6.14.0", | ||
@@ -29,0 +28,0 @@ "babel-plugin-transform-proto-to-assign": "^6.9.0", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
41
31939