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

crosstab

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

crosstab - npm Package Compare versions

Comparing version 0.2.8 to 0.2.9

test/blurtest.html

2

bower.json
{
"name": "crosstab",
"version": "v0.2.8",
"version": "v0.2.9",
"homepage": "https://github.com/tejacques/crosstab",

@@ -5,0 +5,0 @@ "authors": [

@@ -0,0 +0,0 @@ module.exports = function (grunt) {

{
"name": "crosstab",
"version": "0.2.8",
"version": "0.2.9",
"description": "A utility library for cross-tab communication using localStorage.",

@@ -5,0 +5,0 @@ "author": "Tom Jacques <tejacques@gmail.com>",

@@ -0,0 +0,0 @@ # crosstab [![NPM version][npm-img]][npm-url] [![Build Status][travis-img]][travis-url]

@@ -0,0 +0,0 @@ var fs = require('fs');

/*!
* crosstab JavaScript Library v0.2.8
* crosstab JavaScript Library v0.2.9
* https://github.com/tejacques/crosstab

@@ -744,3 +744,2 @@ *

* UMD/AMD/Global context Module Loader wrapper
* based off https://gist.github.com/wilsonpage/8598603
*

@@ -752,5 +751,12 @@ * This wrapper will try to use a module loader with the

* 2.) CommonJS
* 3.) Context Variable (window in the browser)
* 3.) Context Variable (this)
* - window in the browser
* - module.exports in node and browserify
*/
});})(this, typeof define == 'function' && define.amd ? define
});})(
// First arg -- the global object in the browser or node
(function() { try { return window; } catch(e) { return global; } })(),
// Second arg -- the define object
typeof define == 'function' && define.amd
? define
: (function (context) {

@@ -757,0 +763,0 @@ 'use strict';

@@ -0,0 +0,0 @@ var browsers = {

@@ -0,0 +0,0 @@ // =========== Iframe Tools ==============

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