Comparing version 0.0.1 to 0.0.2
@@ -0,1 +1,6 @@ | ||
<a name="0.0.2"></a> | ||
## [0.0.2](https://github.com/kwonoj/cld3-asm/compare/v0.0.1...v0.0.2) (2017-09-08) | ||
<a name="0.0.1"></a> | ||
@@ -2,0 +7,0 @@ ## 0.0.1 (2017-08-27) |
@@ -0,0 +0,0 @@ export declare const UnknownLanguage: string; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import { LanguageResult } from './cldAsmModule'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=cldFactory.js.map |
@@ -0,0 +0,0 @@ import { CldAsmModule } from './cldAsmModule'; |
@@ -0,0 +0,0 @@ "use strict"; |
export { loadModule } from './loadModule'; | ||
export { log, enableLogger } from './util/logger'; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import { CldFactory } from './cldFactory'; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ /** |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var root_1 = require("./root"); | ||
var getroot_1 = require("getroot"); | ||
/** | ||
@@ -8,3 +8,3 @@ * Naïvely detect if running environment if node | ||
exports.isNode = function () { | ||
var proc = root_1.root.process; | ||
var proc = getroot_1.root.process; | ||
if (!!proc && typeof proc === 'object') { | ||
@@ -11,0 +11,0 @@ if (!!proc.versions && typeof proc.versions === 'object') { |
@@ -0,0 +0,0 @@ /** |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var root_1 = require("./root"); | ||
var getroot_1 = require("getroot"); | ||
/** | ||
* Naïvely check if current runtime supports native web assembly. | ||
*/ | ||
exports.isWasmEnabled = function () { return !!root_1.root.WebAssembly && !!root_1.root.WebAssembly.compile && !!root_1.root.WebAssembly.instantiate; }; | ||
exports.isWasmEnabled = function () { return !!getroot_1.root.WebAssembly && !!getroot_1.root.WebAssembly.compile && !!getroot_1.root.WebAssembly.instantiate; }; | ||
//# sourceMappingURL=isWasmEnabled.js.map |
@@ -0,0 +0,0 @@ declare type logFunctionType = (message: string, ...optionalParams: Array<any>) => void; |
@@ -0,0 +0,0 @@ "use strict"; |
{ | ||
"name": "cld3-asm", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "WebAssembly based Javascript bindings for google compact language detector 3", | ||
@@ -80,2 +80,3 @@ "main": "./dist/src/index.js", | ||
"dependencies": { | ||
"getroot": "^1.0.0", | ||
"tslib": "^1.7.1", | ||
@@ -82,0 +83,0 @@ "utf8": "^2.1.2" |
[![Build Status](https://travis-ci.org/kwonoj/cld3-asm.svg?branch=master)](https://travis-ci.org/kwonoj/cld3-asm) | ||
[![Build status](https://ci.appveyor.com/api/projects/status/7s0r599r9h6r682g/branch/master?svg=true)](https://ci.appveyor.com/project/kwonoj/cld3-asm/branch/master) | ||
[![Build status](https://ci.appveyor.com/api/projects/status/vko7m5l7brt5w9ok?svg=true)](https://ci.appveyor.com/project/kwonoj/cld3-asm) | ||
[![codecov](https://codecov.io/gh/kwonoj/cld3-asm/branch/master/graph/badge.svg)](https://codecov.io/gh/kwonoj/cld3-asm) | ||
@@ -4,0 +4,0 @@ [![npm](https://img.shields.io/npm/v/cld3-asm.svg)](https://www.npmjs.com/package/cld3-asm) |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3697595
3
32
7675
+ Addedgetroot@^1.0.0
+ Addedgetroot@1.0.0(transitive)