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

danilhendrasr/upn-npm-parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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