@datagrok/sequence-translator 0.0.4 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,13 +1,12 @@
1
- import * as DG from "datagrok-api/dg";
2
- import * as grok from "datagrok-api/grok";
3
- import {runTests} from "@datagrok-libraries/utils/src/test";
4
- import "./tests/smiles-tests";
1
+ import * as DG from 'datagrok-api/dg';
2
+ import {runTests} from '@datagrok-libraries/utils/src/test';
3
+ import './tests/smiles-tests';
5
4
 
6
- export let _package = new DG.Package();
5
+ export const _package = new DG.Package();
7
6
 
8
7
  //name: test
9
8
  //output: dataframe result
10
9
  export async function test(): Promise<DG.DataFrame> {
11
- let data = await runTests();
10
+ const data = await runTests();
12
11
  return DG.DataFrame.fromObjects(data)!;
13
- }
12
+ }