parse-dhl-remote-area-pdf-to-json
v1.2.0
Published
module that provides json for dhl remote areas
Downloads
5
Readme
# DHL remote area
output.json
is the file that is converted from https://mydhl.express.dhl/content/dam/downloads/global/en/remote-areas/dhl_express_remote_areas_en.pdf.coredownload.pdf
The output is a list of the following interface.
interface RemoteAreaItem {
country: string;
cityOrState?: string;
zipRange?: string[];
zip?: string;
}
Last generated on 20/12/2023 GMT+8
Installing
Package manager
Using npm:
npm i parse-dhl-remote-area-pdf-to-json
Usage
ESM
import countries from 'parse-dhl-remote-area-pdf-to-json';
CommonJS
const countries = require('parse-dhl-remote-area-pdf-to-json');