New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@manahippo/move-to-ts

Package Overview
Dependencies
Maintainers
1
Versions
191
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@manahippo/move-to-ts - npm Package Compare versions

Comparing version 0.0.6 to 0.0.7

1

dist/builtinFuncs.d.ts
import { TypeTag } from "./typeTag";
import { U8, U64, U128, UnsignedInt } from "./builtinTypes";
export declare function abort(code: any): void;
export declare function assert(cond: boolean, error: any): void;

@@ -4,0 +5,0 @@ export declare function u8(from: UnsignedInt<any> | string): U8;

@@ -6,5 +6,9 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.dyn_ge = exports.dyn_le = exports.dyn_gt = exports.dyn_lt = exports.dyn_neq = exports.dyn_eq = exports.dyn_or = exports.dyn_and = exports.dyn_shr = exports.dyn_shl = exports.dyn_xor = exports.dyn_bitand = exports.dyn_bitor = exports.dyn_div = exports.dyn_mod = exports.dyn_mul = exports.dyn_sub = exports.dyn_add = exports.deep_eq = exports.u128 = exports.u64 = exports.u8 = exports.assert = void 0;
exports.dyn_ge = exports.dyn_le = exports.dyn_gt = exports.dyn_lt = exports.dyn_neq = exports.dyn_eq = exports.dyn_or = exports.dyn_and = exports.dyn_shr = exports.dyn_shl = exports.dyn_xor = exports.dyn_bitand = exports.dyn_bitor = exports.dyn_div = exports.dyn_mod = exports.dyn_mul = exports.dyn_sub = exports.dyn_add = exports.deep_eq = exports.u128 = exports.u64 = exports.u8 = exports.assert = exports.abort = void 0;
const big_integer_1 = __importDefault(require("big-integer"));
const builtinTypes_1 = require("./builtinTypes");
function abort(code) {
throw code;
}
exports.abort = abort;
function assert(cond, error) {

@@ -11,0 +15,0 @@ if (!cond) {

2

package.json
{
"name": "@manahippo/move-to-ts",
"version": "0.0.6",
"version": "0.0.7",
"license": "MIT",

@@ -5,0 +5,0 @@ "scripts": {

@@ -5,2 +5,6 @@ import { TypeTag } from "./typeTag";

export function abort(code: any) {
throw code;
}
export function assert(cond: boolean, error: any) {

@@ -7,0 +11,0 @@ if (!cond) {

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