Skip to content

Contains helper functions for working with polish land registration books.

Notifications You must be signed in to change notification settings

pmioduszewski/ksiegi_wieczyste

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Księgi wieczyste

Contains helper functions for working with polish land registration books.

Usage:

let KW = require('ksiegi_wieczyste');

let str = "LU1B/00012345/6";

> KW.isValid(str) 
> false

> KW.checksum(str) 
> 8

> KW.validate(str) 
> "LU1B/00012345/8"


> KW.kw(str) 
{ courtId: 'LU1B',
  court: 'BIAŁA PODLASKA',
  number: '00012345',
  checksum: '6', // NOTE: this is value from input (call 'validate' if you want to get valid number)
  parts: [ 'LU1B', '00012345', '6' ] }
  

About

Contains helper functions for working with polish land registration books.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%