Giter VIP home page Giter VIP logo

s10's Introduction

s10 - Tracking number validation / generation tool

Generate and verify the check digit for the UPU S10 postal tracking codes.

Background

All postal administrations in the world use 13-character tracking numbers, such as EB000717618HK.

The first two characters denote shipment type, the last two characters are the originating country.

The first eight digits are the shipment number, while the ninth digit (8 in this example) is the checksum based on the previous eight numbers.

Generate the check digit based on the first eight numbers

You have the first eight digits and you want to generate the check digit.

const S10 = require('s10');

const digit = S10.calculateCheckDigit('00071761'); // 8

// OR:
// const digit = S10.calculateCheckDigit(71761); // 8

Validate the tracking number is correct

Returns true if the tracking number contain 13 characters (two letters, nine digits, two letters) and if the check digit is correct.

const S10 = require('s10');

const valid1 = S10.trackingNumberIsValid('EB000717618HK'); // true
const valid2 = S10.trackingNumberIsValid('EB900717618HK'); // false
const valid3 = S10.trackingNumberIsValid('1234567891011'); // false

s10's People

Contributors

anton-bot avatar dependabot[bot] avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.