is-what 3.2.0 → 3.2.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -101,7 +101,7 @@ isAnyObject(specialObject) // returns true
101
101
  getType(specialObject) // returns 'Object'
102
102
  ```
103
103
 
104
- > Please note that `isPlainObject` will only return `true` for normal plain JavaScript object.
104
+ > Please note that `isPlainObject` will only return `true` for normal plain JavaScript objects.
105
105
 
106
106
  ## TypeScript
107
107
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "is-what",
3
- "version": "3.2.0",
3
+ "version": "3.2.4",
4
4
  "description": "JS type check (TypeScript supported) functions like `isPlainObject() isArray()` etc. A simple & small integration.",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
@@ -42,17 +42,17 @@
42
42
  },
43
43
  "homepage": "https://github.com/mesqueeb/is-what#readme",
44
44
  "devDependencies": {
45
- "@babel/core": "^7.1.6",
46
- "@types/babel-core": "^6.25.5",
47
- "@types/jest": "^23.3.10",
45
+ "@babel/core": "^7.5.4",
46
+ "@types/babel-core": "^6.25.6",
47
+ "@types/jest": "^23.3.14",
48
48
  "babel-core": "^7.0.0-bridge.0",
49
- "babel-jest": "^23.6.0",
49
+ "babel-jest": "^24.8.0",
50
50
  "babel-preset-env": "^1.7.0",
51
- "jest": "^23.6.0",
51
+ "jest": "^24.8.0",
52
52
  "regenerator-runtime": "^0.12.1",
53
53
  "rollup": "^0.65.2",
54
- "rollup-plugin-typescript2": "^0.17.2",
55
- "typescript": "^3.1.6"
54
+ "rollup-plugin-typescript2": "^0.21.2",
55
+ "typescript": "^3.5.3"
56
56
  },
57
57
  "dependencies": {}
58
58
  }