1.0.4 • Published 9 years ago

tickertape v1.0.4

Weekly downloads
2
License
mit
Repository
github
Last release
9 years ago

Tickertape

Tickertape lets you convert company names into their corresponding stock ticker symbol and vice versa.

Note: Module currently only supports NASDAQ companies

Installation

npm install tickertape

Usage

var tickertape = require('tickertape'),
getSymbol = tickertape.getSymbol,
getName = tickertape.getName;

var companyName = 'Advaxis, Inc.`;
var companySymbol = getSymbol(companyName);
console.log(companyName+ ': ' + companySymbol);