@zerodep/address-secondary
TypeScript icon, indicating that this package has built-in type declarations

2.3.8 • Public • Published

@zerodep/address-secondary

version language types license

CodeFactor Known Vulnerabilities

A parser to find where a secondary name or abbreviation is in a string.

Full documentation is available at the zerodep.app page.

Signature

declare const addressSecondary: (address: string) => Addresssecondary[];

interface AddressSecondary {
  secondary: string;
  source: string;
  ndx: number;
  length: number;
  hasUnit: boolean;
}

The addressSecondary function has the following parameters:

  • address - an address string

The addressSecondary result has the following properties:

  • secondary - the standardized secondary value
  • source - the string that matched to identify the secondary
  • ndx - the position in the string where the source match starts
  • length - the length of the matched string
  • hasUnit - flag indicating if the secondary typically has a number associated with it

Examples

All @zerodep packages support both ESM and CJS formats, each complete with Typescript typings.

// ESM
import { addressSecondary } from '@zerodep/address-secondary';

// CJS
const { addressSecondary } = require('@zerodep/address-secondary');

Use Case

addressSecondary('basement 1234 Main Street East Los Angeles CA, US');
//  [
//    {
//      secondary: 'BSMT',
//      source: 'basement',
//      ndx: 0,
//      length: 8,
//      hasUnit: false,
//    },
//  ]

addressSecondary('office 1234 Main Street East ph 4 Los Angeles CA, US');
// [
//   {
//     secondary: 'OFC',
//     source: 'office',
//     ndx: 0,
//     length: 6,
//     hasUnit: true,
//   },
//   {
//     secondary: 'PH',
//     source: 'ph',
//     ndx: 29,
//     length: 2,
//     hasUnit: true,
//   },
// ]

// no results found
addressSecondary('unknown');
// []

ZeroDep Advantages

  • Zero npm dependencies - completely eliminates all risk of supply-chain attacks, decreases node_modules folder size
  • ESM & CJS - supports both ECMAScript modules and common JavaScript exports
  • Tree Shakable - built to be fully tree shakable ensuring your packages are the smallest possible size
  • Fully Typed - typescript definitions are provided/built-in to every package for a superior developer experience
  • Semantically Named - package and method names are easy to grok, remember, use, and read
  • Documented - actually useful documentation with examples at zerodep.app
  • Intelligently Packaged - multiple npm packages of different sizes available allowing a menu or a-la-carte composition of capabilities
  • 100% Tested - all methods and packages are fully unit tested
  • Predictably Versioned - semantically versioned for peace-of-mind upgrading, valuable changelogs for understand changes
  • MIT Licensed - permissively licensed for maximum usability

Dependents (0)

Package Sidebar

Install

npm i @zerodep/address-secondary

Homepage

zerodep.app

Weekly Downloads

75

Version

2.3.8

License

MIT

Unpacked Size

10.1 kB

Total Files

8

Last publish

Collaborators

  • cdepage