Comparing version 2.0.0-alpha.13 to 2.0.0-alpha.14
@@ -10,3 +10,17 @@ (function (factory) { | ||
"use strict"; | ||
var globalObject = Function('return this')(); | ||
var globalObject = (function () { | ||
if (typeof window !== 'undefined') { | ||
// Browsers | ||
return window; | ||
} | ||
else if (typeof global !== 'undefined') { | ||
// Node | ||
return global; | ||
} | ||
else if (typeof self !== 'undefined') { | ||
// Web workers | ||
return self; | ||
} | ||
return {}; | ||
})(); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
@@ -13,0 +27,0 @@ exports.default = globalObject; |
@@ -9,3 +9,3 @@ import { Handle } from './interfaces'; | ||
*/ | ||
export declare const assign: <T extends {}, U extends {}>(target: T, ...sources: U[]) => T & U; | ||
export declare const assign: <T extends {}, U extends {}>(target: T, ...sources: (U | null | undefined)[]) => T & U; | ||
/** | ||
@@ -12,0 +12,0 @@ * Creates a new object from the given prototype, and copies all enumerable own properties of one or more |
@@ -47,2 +47,5 @@ (function (factory) { | ||
var source = _a[_i]; | ||
if (source === null || source === undefined) { | ||
continue; | ||
} | ||
for (var key in source) { | ||
@@ -49,0 +52,0 @@ if (inherited || hasOwnProperty.call(source, key)) { |
{ | ||
"name": "dojo-core", | ||
"version": "2.0.0-alpha.13", | ||
"version": "2.0.0-alpha.14", | ||
"description": "Basic utilites for common TypeScript development", | ||
@@ -22,3 +22,3 @@ "homepage": "http://dojotoolkit.org", | ||
"codecov.io": "0.1.6", | ||
"dojo-loader": ">=2.0.0-beta.5", | ||
"dojo-loader": ">=2.0.0-beta.7", | ||
"dts-generator": "~1.7.0", | ||
@@ -25,0 +25,0 @@ "formidable": "1.0.17", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
No README
QualityPackage does not have a README. This may indicate a failed publish or a low quality package.
Found 1 instance in 1 package
591688
134
6534
1
137