remove url import

This commit is contained in:
mistval 2022-02-21 10:37:23 -05:00
parent 2bc4cd6de0
commit fee0cdd085
3 changed files with 3 additions and 4 deletions

4
package-lock.json generated

@ -1,12 +1,12 @@
{
"name": "node-fetch-cache",
"version": "3.0.4",
"version": "3.0.5",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "node-fetch-cache",
"version": "3.0.4",
"version": "3.0.5",
"license": "MIT",
"dependencies": {
"cacache": "^15.2.0",

@ -1,6 +1,6 @@
{
"name": "node-fetch-cache",
"version": "3.0.4",
"version": "3.0.5",
"description": "node-fetch with caching.",
"main": "src/index.js",
"type": "module",

@ -1,6 +1,5 @@
import fetch, { Request } from 'node-fetch';
import fs from 'fs';
import { URLSearchParams } from 'url';
import crypto from 'crypto';
import locko from 'locko';
import { NFCResponse } from './classes/response.js';