nfclibrary
Advanced tools
Comparing version 1.0.2 to 1.0.3
@@ -1,3 +0,9 @@ | ||
const fetch = require('node-fetch'); | ||
let fetch; | ||
try { | ||
fetch = require('node-fetch'); | ||
} catch (error) { | ||
throw new Error('The "node-fetch" module is required but not installed. Please run "npm install node-fetch" to install it.'); | ||
} | ||
const fileNames = [ | ||
@@ -4,0 +10,0 @@ 'boost.svg', |
{ | ||
"name": "nfclibrary", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "A node module to query any icon from the Naflouille Creations projects. ", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
3246
69