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

@agoric/assert

Package Overview
Dependencies
Maintainers
5
Versions
2115
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@agoric/assert - npm Package Compare versions

Comparing version 0.1.0 to 0.2.0

11

CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

# [0.2.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/assert@0.1.0...@agoric/assert@0.2.0) (2020-12-10)
### Features
* **import-bundle:** Preliminary support Endo zip hex bundle format ([#1983](https://github.com/Agoric/agoric-sdk/issues/1983)) ([983681b](https://github.com/Agoric/agoric-sdk/commit/983681bfc4bf512b6bd90806ed9220cd4fefc13c))
# [0.1.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/assert@0.0.12-dev.0...@agoric/assert@0.1.0) (2020-11-07)

@@ -8,0 +19,0 @@

55

package.json
{
"name": "@agoric/assert",
"version": "0.1.0",
"version": "0.2.0",
"description": "Assert expression support that protects sensitive data",
"parsers": {
"js": "mjs"
},
"main": "src/assert.js",

@@ -36,3 +39,3 @@ "engines": {

"devDependencies": {
"@agoric/install-ses": "^0.4.0",
"@agoric/install-ses": "^0.5.0",
"ava": "^3.12.1",

@@ -56,46 +59,4 @@ "esm": "^3.2.25",

"extends": [
"airbnb-base",
"plugin:prettier/recommended",
"plugin:jsdoc/recommended"
],
"parser": "@typescript-eslint/parser",
"env": {
"es6": true
},
"globals": {
"harden": "readonly"
},
"rules": {
"implicit-arrow-linebreak": "off",
"function-paren-newline": "off",
"arrow-parens": "off",
"strict": "off",
"prefer-destructuring": "off",
"no-else-return": "off",
"no-console": "off",
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
],
"no-return-assign": "off",
"no-param-reassign": "off",
"no-restricted-syntax": [
"off",
"ForOfStatement"
],
"no-unused-expressions": "off",
"no-loop-func": "off",
"no-inner-declarations": "off",
"import/prefer-default-export": "off",
"import/no-extraneous-dependencies": "off",
"jsdoc/no-undefined-types": "off",
"jsdoc/require-jsdoc": "off",
"jsdoc/require-property-description": "off",
"jsdoc/require-param-description": "off",
"jsdoc/require-returns": "off",
"jsdoc/require-returns-description": "off"
}
"@agoric"
]
},

@@ -115,3 +76,3 @@ "eslintIgnore": [

},
"gitHead": "20bc9a904a3f3768943ed51323ce14a4f609a233"
"gitHead": "f9fab94b70ed22d7fcccb261af11ed8dd6348614"
}
// Copyright (C) 2019 Agoric, under Apache License 2.0
/* global globalThis */
// @ts-check

@@ -16,2 +15,4 @@

const { freeze } = Object;
/** @type {Assert} */

@@ -70,3 +71,3 @@ const globalAssert = globalThis.assert;

}
harden(an);
freeze(an);
export { an };
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