Socket
Socket
Sign inDemoInstall

life-expectancy

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

life-expectancy

Life expectancy of humans across the global.


Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

life-expectancy Build Status

Life expectancy of humans across the global.

Install

$ npm install --save life-expectancy

Usage

const lifeExpectancy = require('life-expectancy');

lifeExpectancy('India');
/*
[ { both: 68.3,
    country: 'India',
    female: 69.9,
    male: 66.9,
    rank: 125 } ]
*/

lifeExpectancy('in');
/*
[ { both: 68.3,
    country: 'India',
    female: 69.9,
    male: 66.9,
    rank: 125 } ]
*/


lifeExpectancy('Sao Tome and Principe');
/*
[ { both: 67.5,
    country: 'Sao Tome and Principe',
    female: 69.4,
    male: 65.6,
    rank: 127 } ]
*/

API

lifeExpectancy(input)

input

Type: string

Country code or Country name.

More info.

[ { both: 68.3,
    country: 'India',
    female: 69.9,
    male: 66.9,
    rank: 125 } ]

In the above response, here is what the keys represent:

  • both => Life expectancy of both the genders.

  • country => Yes, it's what you are thinking.

  • female => female life expectancy in human years.

  • male => male life expectancy in human years.

  • rank => Out of all the countires in the world, where does this coutnry stand in terms of life expectancy, lesser the rank higher the life expectancy.

P.S: The data is parsed from World Health Statistics 2016.

License

MIT © Hemanth.HM

Keywords

FAQs

Package last updated on 01 Jan 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc