npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

leadconduit-types

v4.21.4

Published

A Node.JS module that parses data by type

Downloads

1,368

Readme

LeadConduit Types

This Node.JS module parses lead data by type.

Build Status

Usage

var types = require('leadconduit-types');
var phone = types.phone.parse('(512) 789-1111');
console.log(phone);

Supported types

In LeadConduit each field has an associated type, which is used to help make sense out of submitted lead data. The following table summarizes all supported types and provides some example values for each.

| Data Type | Description | Examples | |-----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------| | string | Any string data which can include alphanumeric characters, whitespace, special characters, new lines, etc. | John, I would like some information on your product, 0123 | | number | Any string which can be parsed to a number | 1000, 9,998.99 | | | boolean | Any string wich can be parsed to a boolean | true, 1, yes | | date, dob | Most strings which are reasonably recognizable as a date, including European formats (month before day) | 1995-12-25 (recommended), Dec 25, 1995, 12/25/1995, 25/12/1995 | | time | Most strings which are reasonably recognizable as a datetime, including European formats (month before day) | 2014-06-14T18:27:33.000Z (recommended), 2014-06-14T18:27:33Z, 06/14/2014 6:27:33 PM, Sat Jun 14 2014 13:27:33 GMT-0500 (CDT) | | ssn | A US Social Security Number. Data submitted in this field transient. It is never stored or logged by LeadConduit. | 123-45-6789, 123 45 6789, 123456789 | | postal code | A US, UK, or Canadian postal code | 78751, 78751-4424, AA11A 1AA | | state | A US State abbreviation, or international locality | TX, Quebec | | range | A numeric range, with a high and low boundary. A non-range is also acceptable provided is a number | 1 to 10, 1-10, 10+, 10 | | gender | Gender of the consumer | Male, Female, Other, M, F, O | | phone | A US phone number in a common format (optional extension must be preceded by the x character). To specify the type of the phone number append h for home, w for work, or m for mobile to the number. | 1-512-789-1111, 512-789-1111 x1234, (512) 789-1111h, 5127891111m, (512) 789-1111w | | email | An email address | [email protected], [email protected] | | street | A street address | 4203 Guadalupe St | | trustedform_url | A TrustedForm certificate or ping URL | https://cert.trustedform.com/eb9fc4dd9bed9ad451a5648946cf4bf09b5bb947 | | url | A URL | https://mywebsite.com |