repository-provider
Advanced tools
Comparing version 5.2.4 to 5.2.5
@@ -388,12 +388,4 @@ 'use strict'; | ||
} | ||
} else { | ||
if (typeof this.content === "string" || this.content instanceof String) { | ||
return this.toString() === other.toString(); | ||
} | ||
if (this.content === undefined && other.content === undefined) { | ||
return true; | ||
} | ||
} | ||
console.log(`not implemented: ${typeof this.content} <> ${typeof other.content}`); | ||
return false; | ||
return this.toString() === other.toString(); | ||
} | ||
@@ -400,0 +392,0 @@ } |
{ | ||
"name": "repository-provider", | ||
"version": "5.2.4", | ||
"version": "5.2.5", | ||
"publishConfig": { | ||
@@ -40,3 +40,3 @@ "access": "public" | ||
"nyc": "^13.1.0", | ||
"rollup": "^0.66.2", | ||
"rollup": "^0.66.4", | ||
"rollup-plugin-babel": "^4.0.3", | ||
@@ -49,3 +49,3 @@ "rollup-plugin-cleanup": "^3.0.0", | ||
"rollup-plugin-node-resolve": "^3.4.0", | ||
"semantic-release": "^15.9.16", | ||
"semantic-release": "^15.9.17", | ||
"travis-deploy-once": "^5.0.9", | ||
@@ -52,0 +52,0 @@ "rollup-plugin-json": "^3.1.0" |
@@ -99,16 +99,5 @@ /** | ||
} | ||
} else { | ||
if (typeof this.content === "string" || this.content instanceof String) { | ||
return this.toString() === other.toString(); | ||
} | ||
if (this.content === undefined && other.content === undefined) { | ||
return true; | ||
} | ||
} | ||
console.log( | ||
`not implemented: ${typeof this.content} <> ${typeof other.content}` | ||
); | ||
return false; | ||
return this.toString() === other.toString(); | ||
} | ||
@@ -115,0 +104,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
61747
1569