Fixed imports
Some checks failed
Build / Build NPM Project (push) Successful in 1m22s
Build / Publish Documentation (push) Failing after 19s
Build / Tag Version (push) Successful in 36s

This commit is contained in:
2025-10-20 16:02:27 -04:00
parent 08503de552
commit 1595aea529
8 changed files with 9 additions and 9 deletions

View File

@@ -1,5 +1,6 @@
import {Database, Table} from './database.ts'; import {Database, Table} from './database.ts';
import {deepCopy, includes, JSONSanitize} from './objects.ts'; import {JSONSanitize} from './json.ts';
import {deepCopy, includes} from './objects.ts';
export type CacheOptions = { export type CacheOptions = {
/** Delete keys automatically after x amount of seconds */ /** Delete keys automatically after x amount of seconds */

View File

@@ -1,6 +1,7 @@
import {makeArray} from './array.ts'; import {makeArray} from './array.ts';
import {ASet} from './aset.ts'; import {ASet} from './aset.ts';
import {dotNotation, flattenObj, JSONSanitize} from './objects.ts'; import {JSONSanitize} from './json.ts';
import {dotNotation, flattenObj} from './objects.ts';
import {LETTER_LIST} from './string.ts'; import {LETTER_LIST} from './string.ts';
/** /**

View File

@@ -1,5 +1,5 @@
import {makeArray} from './array.ts'; import {makeArray} from './array.ts';
import {JSONAttemptParse} from './objects.ts'; import {JSONAttemptParse} from './json.ts';
import {PromiseProgress} from './promise-progress'; import {PromiseProgress} from './promise-progress';
import {formatDate} from './time.ts'; import {formatDate} from './time.ts';

View File

@@ -1,4 +1,4 @@
import {JSONAttemptParse} from './objects.ts'; import {JSONAttemptParse} from './json.ts';
/** /**
* Creates a JSON Web Token (JWT) using the provided payload. * Creates a JSON Web Token (JWT) using the provided payload.

View File

@@ -1,5 +1,5 @@
import {TypedEmitter, TypedEvents} from './emitter'; import {TypedEmitter, TypedEvents} from './emitter';
import {JSONSanitize} from './objects.ts'; import {JSONSanitize} from './json.ts';
export const CliEffects = { export const CliEffects = {
CLEAR: "\x1b[0m", CLEAR: "\x1b[0m",

View File

@@ -2,7 +2,6 @@ import {JSONSanitize} from './json.ts';
export type Delta = { [key: string]: any | Delta | null }; export type Delta = { [key: string]: any | Delta | null };
/** /**
* Applies deltas to `target`. * Applies deltas to `target`.
* @param base starting point * @param base starting point

View File

@@ -1,4 +1,5 @@
import {dotNotation, JSONAttemptParse, JSONSerialize} from './objects.ts'; import {JSONAttemptParse, JSONSerialize} from './json.ts';
import {dotNotation} from './objects.ts';
/** /**
* Filters an array of objects based on a search term and optional regex checking. * Filters an array of objects based on a search term and optional regex checking.

View File

@@ -1,5 +1,3 @@
import {numSuffix} from './math.ts';
/** /**
* Like setInterval but will adjust the timeout value to account for runtime * Like setInterval but will adjust the timeout value to account for runtime
* @param {Function} cb Callback function that will be ran * @param {Function} cb Callback function that will be ran