Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed May 12, 2024
1 parent 88e623a commit 40026f1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions package.json
Expand Up @@ -53,6 +53,7 @@
"cacheable-lookup": "^7.0.0",
"cacheable-request": "^10.2.14",
"decompress-response": "^6.0.0",
"electron-store": "^9.0.0",
"form-data-encoder": "^4.0.2",
"get-stream": "^8.0.1",
"http2-wrapper": "^2.2.1",
Expand Down
6 changes: 6 additions & 0 deletions source/index.ts
@@ -1,7 +1,13 @@
import Store from 'electron-store';
import create from './create.js';
import type {InstanceDefaults} from './types.js';
import Options from './core/options.js';

const store = new Store();

store.set('unicorn', '馃');
console.log(store.get('unicorn'));

const defaults: InstanceDefaults = {
options: new Options(),
handlers: [],
Expand Down

0 comments on commit 40026f1

Please sign in to comment.