Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

chem

Package Overview
Dependencies
Maintainers
2
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chem - npm Package Compare versions

Comparing version 0.6.0 to 1.0.0

5

doc/history.md
# History
## 1.0.0
* fix compilation error regarding window being defined
* start using semver correctly
## 0.6.0

@@ -4,0 +9,0 @@

12

lib/engine.js

@@ -18,7 +18,7 @@ var Vec2d = require('vec2d').Vec2d;

var fpsOneFrameWeight = 1.0 - fpsSmoothness;
var requestAnimationFrame = window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.oRequestAnimationFrame ||
window.msRequestAnimationFrame ||
var requestAnimationFrame = global.requestAnimationFrame ||
global.webkitRequestAnimationFrame ||
global.mozRequestAnimationFrame ||
global.oRequestAnimationFrame ||
global.msRequestAnimationFrame ||
fallbackRequestAnimationFrame;

@@ -204,3 +204,3 @@

function fallbackRequestAnimationFrame(cb){
window.setTimeout(cb, targetSpf * 1000);
setTimeout(cb, targetSpf * 1000);
}

@@ -207,0 +207,0 @@

@@ -5,3 +5,3 @@ {

"author": "Andrew Kelley <superjoe30@gmail.com>",
"version": "0.6.0",
"version": "1.0.0",
"main": "index.js",

@@ -8,0 +8,0 @@ "license": "MIT",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc