@lijuhong1981/jsmath 1.0.17 → 1.0.18

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/Range.js +0 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lijuhong1981/jsmath",
3
- "version": "1.0.17",
3
+ "version": "1.0.18",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
package/src/Range.js CHANGED
@@ -137,8 +137,6 @@ class Range {
137
137
  * @returns {Boolean}
138
138
  */
139
139
  static equals(left, right) {
140
- Check.instanceOf('left', left, Range);
141
- Check.instanceOf('right', right, Range);
142
140
  if (left === right)
143
141
  return true;
144
142
  if (left && right && left.minimum === right.minimum && left.maximum === right.maximum && left.containsMinimum === right.containsMinimum && left.containsMaximum === right.containsMaximum)