@remotion/animation-utils 4.0.174 → 4.0.176

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -141,7 +141,7 @@ var checkInputRange = function(arr) {
141
141
  if (typeof arr[index] !== "number") {
142
142
  throw new Error(`inputRange must contain only numbers`);
143
143
  }
144
- if (arr[index] === (-Infinity) || arr[index] === Infinity) {
144
+ if (arr[index] === -Infinity || arr[index] === Infinity) {
145
145
  throw new Error(`inputRange must contain only finite numbers, but got [${arr.join(",")}]`);
146
146
  }
147
147
  if (index > 0 && !(arr[index] > arr[index - 1])) {
package/package.json CHANGED
@@ -4,13 +4,13 @@
4
4
  "name": "Chetan Karwa",
5
5
  "email": "cbkarwa@gmail.com"
6
6
  },
7
- "version": "4.0.174",
7
+ "version": "4.0.176",
8
8
  "description": "A set of animation utilities for Remotion",
9
9
  "main": "./dist/index.js",
10
10
  "module": "./dist/index.mjs",
11
11
  "types": "./dist/index.d.ts",
12
12
  "dependencies": {
13
- "remotion": "4.0.174"
13
+ "remotion": "4.0.176"
14
14
  },
15
15
  "files": [
16
16
  "dist",