Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

dojo-core

Package Overview
Dependencies
Maintainers
2
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dojo-core - npm Package Compare versions

Comparing version 2.0.0-alpha.13 to 2.0.0-alpha.14

README.md

16

global.js

@@ -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;

2

lang.d.ts

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc