Skip to content
This repository has been archived by the owner on Aug 25, 2021. It is now read-only.

Latest commit

 

History

History
37 lines (28 loc) · 457 Bytes

README.md

File metadata and controls

37 lines (28 loc) · 457 Bytes

UPN NPM Parser

Parse the student ID of UPN Jatim's students.

Install

# npm
npm i upn-npm-parser

# yarn
yarn add upn-npm-parser

Usage

// commonjs
const {parseNpm} = require('upn-npm-parser');

// ES Modules
import {parseNpm} from 'upn-npm-parser';

const parseResult = parseNpm("19081010016");

Develop

# Install dependencies
yarn

# Build
yarn build

# Build with watch mode
yarn watch

# Run tests
yarn test