UNPKG

isotope-abundances

Version:

A JavaScript library for working with isotope abundances

7 lines (5 loc) 151 B
var isotopes = require('./ISOTOPES.json'); module.exports = function(element){ if (!(element in isotopes)) return {}; return isotopes[element]; }