···22import { spy } from 'npm:nanospy';
33import { setImmediate } from 'node:timers/promises';
4455-import * as dldr from './mod.ts';
55+import * as dldr from './cache.ts';
6677Deno.test('api', () => {
88 assertInstanceOf(dldr.load, Function);
+1-1
cache/mod.ts
lib/cache.ts
···31313232import { identify } from 'object-identity';
33333434-import * as dldr from '../mod.ts';
3434+import * as dldr from './mod.ts';
35353636export type MapLike<K, V> = {
3737 get(key: K): V | undefined;