@keckelt/tsne
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -1,1 +0,1 @@ | ||
export * from "./tsne"; | ||
export { TSNE } from './tsne'; |
"use strict"; | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __exportStar = (this && this.__exportStar) || function(m, exports) { | ||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__exportStar(require("./tsne"), exports); | ||
; | ||
exports.TSNE = void 0; | ||
var tsne_1 = require("./tsne"); | ||
Object.defineProperty(exports, "TSNE", { enumerable: true, get: function () { return tsne_1.TSNE; } }); |
{ | ||
"name": "@keckelt/tsne", | ||
"description": "Updated t-SNE implementation in TypeScript.", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"author": "Klaus Eckelt", | ||
@@ -11,3 +11,3 @@ "license": "MIT", | ||
"build": "tsc", | ||
"prepare" : "npm run build", | ||
"prepare": "npm run build", | ||
"preview": "npm pack --dry-run", | ||
@@ -26,3 +26,5 @@ "test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"files": ["lib/**/*"] | ||
"files": [ | ||
"lib/**/*" | ||
] | ||
} |
@@ -9,3 +9,3 @@ # tSNE | ||
```ts | ||
import { TSNE } from '@keckelt/tsne-js'; | ||
import {TSNE} from '@keckelt/tsne-js'; | ||
@@ -12,0 +12,0 @@ const data = [...]; |
16926
389