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

hunspell-asm

Package Overview
Dependencies
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hunspell-asm - npm Package Compare versions

Comparing version 0.0.7 to 0.0.8

10

CHANGELOG.md

@@ -0,1 +1,11 @@

<a name="0.0.8"></a>
## [0.0.8](https://github.com/kwonoj/hunspell-asm/compare/v0.0.7...v0.0.8) (2017-09-10)
### Features
* **index:** export interfaces ([39ec725](https://github.com/kwonoj/hunspell-asm/commit/39ec725))
<a name="0.0.7"></a>

@@ -2,0 +12,0 @@ ## [0.0.7](https://github.com/kwonoj/hunspell-asm/compare/v0.0.6...v0.0.7) (2017-09-08)

0

dist/src/Hunspell.d.ts

@@ -0,0 +0,0 @@ export interface Hunspell {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=Hunspell.js.map

@@ -0,0 +0,0 @@ /// <reference types="node" />

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=HunspellAsmModule.js.map

@@ -0,0 +0,0 @@ import { Hunspell } from './Hunspell';

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=HunspellFactory.js.map
import { HunspellAsmModule } from './HunspellAsmModule';
import { HunspellFactory } from './HunspellFactory';
export declare const hunspellLoader: (asmModule: HunspellAsmModule) => HunspellFactory;

@@ -0,0 +0,0 @@ "use strict";

export { loadModule } from './loadModule';
export { HunspellFactory } from './HunspellFactory';
export { Hunspell } from './Hunspell';
export { log, enableLogger } from './util/logger';

@@ -0,0 +0,0 @@ "use strict";

import { FS } from './HunspellAsmModule';
export declare const isMounted: (FS: FS, mountPath: string, type: "dir" | "file") => boolean;

@@ -0,0 +0,0 @@ "use strict";

import { HunspellFactory } from './HunspellFactory';
export declare const loadModule: (binaryEndpoint?: string | undefined) => Promise<HunspellFactory>;

@@ -0,0 +0,0 @@ "use strict";

import { FS } from './HunspellAsmModule';
export declare const mkdirTree: (FS: FS, dirPath: string) => void;

@@ -0,0 +0,0 @@ "use strict";

import { FS } from './HunspellAsmModule';
export declare const mountBuffer: (FS: FS, memPathId: string) => (contents: ArrayBufferView, fileName?: string | undefined) => string;

@@ -0,0 +0,0 @@ "use strict";

import { FS } from './HunspellAsmModule';
export declare const mountDirectory: (FS: FS, nodePathId: string) => (dirPath: string) => string;

@@ -0,0 +0,0 @@ "use strict";

import { FS } from './HunspellAsmModule';
export declare const unmount: (FS: FS, memPathId: string) => (mountedPath: string) => void;

@@ -0,0 +0,0 @@ "use strict";

export declare const isNode: () => boolean;

@@ -0,0 +0,0 @@ "use strict";

export declare const isWasmEnabled: () => boolean;

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ declare type logFunctionType = (message: string, ...optionalParams: Array<any>) => void;

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ import { cwrapSignature } from './HunspellAsmModule';

@@ -0,0 +0,0 @@ "use strict";

6

package.json
{
"name": "hunspell-asm",
"version": "0.0.7",
"version": "0.0.8",
"description": "WebAssembly based Javascript bindings for hunspell spellchecker",

@@ -62,3 +62,3 @@ "main": "./dist/src/index.js",

"husky": "^0.14.3",
"jest": "^20.0.4",
"jest": "^21.0.2",
"lint-staged": "^4.0.1",

@@ -70,3 +70,3 @@ "lodash": "^4.17.4",

"shx": "^0.2.2",
"ts-jest": "^20.0.7",
"ts-jest": "^21.0.0",
"ts-node": "^3.2.0",

@@ -73,0 +73,0 @@ "tslint": "^5.5.0",

@@ -9,2 +9,4 @@ [![Build Status](https://travis-ci.org/kwonoj/hunspell-asm.svg?branch=master)](https://travis-ci.org/kwonoj/hunspell-asm)

[![Greenkeeper badge](https://badges.greenkeeper.io/kwonoj/hunspell-asm.svg)](https://greenkeeper.io/)
`Hunspell-asm` is isomorphic javascript binding to [hunspell](https://github.com/hunspell/hunspell) spellchecker based on WebAssembly hunspell binary. This module aims to provide thin, lightweight interface to hunspell without requiring native modules.

@@ -11,0 +13,0 @@

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