@eventric/mastertour
Advanced tools
Comparing version 1.0.17 to 1.0.18
@@ -1,1 +0,2 @@ | ||
export default function hasOwnProperty<X extends {} | undefined | string | number | any[], Y extends PropertyKey>(obj: X, prop: Y): obj is X & Record<Y, unknown>; | ||
export declare function hasOwnProperty<X extends {} | undefined | string | number | null | any[], Y extends PropertyKey>(obj: X, prop: Y): obj is X & Record<Y, unknown>; | ||
export default hasOwnProperty; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.hasOwnProperty = void 0; | ||
function hasOwnProperty(obj, prop) { | ||
return typeof obj !== "undefined" && obj.hasOwnProperty(prop); | ||
return !!obj && obj.hasOwnProperty(prop); | ||
} | ||
exports.hasOwnProperty = hasOwnProperty; | ||
exports.default = hasOwnProperty; |
{ | ||
"name": "@eventric/mastertour", | ||
"version": "1.0.17", | ||
"version": "1.0.18", | ||
"description": "A library for interacting programmatically with the Master Tour platform", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
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
19828
511