Validity style validator to ensure a UK postcode
npm install validity-ukpostcodeValidity style validator to ensure a UK postcode
```
npm install validity-ukpostcode --save
Below is a simple example for usage with schemata and save:
` js
var postcode = require('validity-ukpostcode')
, schemata = require('schemata')
var schema = schemata(
{ width:
{ type: String
, validators: { [ postcode ] }
}
})
``