diff options
Diffstat (limited to 'src/index.ts')
| -rw-r--r-- | src/index.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/index.ts b/src/index.ts index d076567..ad6ef9e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -8,7 +8,7 @@ import { } from './lib/locate'; import { show, head, tail } from './lib/display'; import { getSize, info } from './lib/info'; -import { flatten, fromJSON, fromCSV, searchValue } from './lib/data'; +import { flatten, fromJSON, fromCSV, searchValue, sort } from './lib/data'; import { toJSON, toCSV } from './lib/export'; import { isArrayOfType, range, flattenJSON } from './helpers/arrayFunctions'; @@ -84,6 +84,7 @@ class Izuku { public title = title; public toJSON = toJSON; public toCSV = toCSV; + public sort = sort; } class Frame extends Izuku { |
