Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/uploads/../uploads/../../../../instantly.picotech.app/homes/../../wa.picotech.app/public_html/node_modules/escape-html/../././form-data/../methods/../lodash.clonedeep/../ws/../././cliui/../validator/./../entities/../semver/../thread-stream/../axios/../libphonenumber-js/runnable
الملفات الموجودة في هذا الـ Path:
.
..
create-commonjs-package-json.js
download.js
generate-country-codes.js
generate.js
json-to-js.js
metadata-branch.js
metadata-update-and-push-and-pull-request.js
metadata-update-and-push.js
metadata-update-and-release.js
modules

مشاهدة ملف: download.js

import fs from 'fs'
import { download } from 'libphonenumber-metadata-generator'

const url = process.argv[2]
const outputPath = process.argv[3]

download(url).then((contents) => {
	fs.writeFileSync(outputPath, contents)
}).catch((error) => {
	console.error(error)
	process.exit(1)
})