Socket
Socket
Sign inDemoInstall

fast-azure-storage

Package Overview
Dependencies
Maintainers
10
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fast-azure-storage - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

yarn.lock

5

lib/table.js

@@ -695,3 +695,6 @@ 'use strict';

if (options.top) {
query.$top = '' + options.top;
if (options.top > 1000) {
throw new Error(`queryEntities: Too Large Query: top of ${options.top} > 1000`);
}
query.$top = '' + options.top;
}

@@ -698,0 +701,0 @@ if (options.nextPartitionKey) {

38

package.json
{
"name": "fast-azure-storage",
"version": "1.0.0",
"author": "Jonas Finnemann Jensen <jopsen@gmail.com>, Elena Solomon <elenasolomon28@gmail.com>",
"description": "Fast client library for azure storage services",
"license": "MPL-2.0",
"main": "lib/index.js",
"name": "fast-azure-storage",
"version": "1.0.1",
"author": "Jonas Finnemann Jensen <jopsen@gmail.com>, Elena Solomon <elenasolomon28@gmail.com>",
"description": "Fast client library for azure storage services",
"license": "MPL-2.0",
"main": "lib/index.js",
"scripts": {
"test": "mocha test/*.js",
"docs": "yuidoc .",
"push-docs": "npm run docs && git add docs/ && git commit -m 'Update docs' && git subtree push --prefix docs git@github.com:taskcluster/fast-azure-storage.git gh-pages"
"test": "mocha test/*.js",
"docs": "yuidoc .",
"push-docs": "npm run docs && git add docs/ && git commit -m 'Update docs' && git subtree push --prefix docs git@github.com:taskcluster/fast-azure-storage.git gh-pages"
},
"repository": {
"type": "git",
"url": "https://github.com/taskcluster/fast-azure-storage.git"
"type": "git",
"url": "https://github.com/taskcluster/fast-azure-storage.git"
},

@@ -21,15 +21,15 @@ "engines": {

"dependencies": {
"debug": "^2.2.0",
"promise": "^7.0.4",
"pixl-xml": "^1.0.10"
"debug": "^2.2.0",
"promise": "^7.0.4",
"pixl-xml": "^1.0.10"
},
"optionalDependencies": {
"libxmljs": "^0.18.0"
"libxmljs": "^0.18.0"
},
"devDependencies": {
"mocha": "^2.2.1",
"jsdoc": "^3.3.0-beta3",
"yuidocjs": "^0.9.0",
"yuidoc-lucid-theme": "jonasfj/yuidoc-lucid-theme"
"mocha": "^2.2.1",
"jsdoc": "^3.3.0-beta3",
"yuidocjs": "^0.9.0",
"yuidoc-lucid-theme": "jonasfj/yuidoc-lucid-theme"
}
}

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