UNPKG

pubchem

Version:

pubchem simplifies the data retrieval from the PubChem API.

12 lines 413 B
import { getNumberProperties } from './getNumberProperties'; /** * Returns the rotable bond count of a compound * * @param data Data of a compound data request to the PubChem API * @returns ComputedData */ export function getRotableBondCount(data) { const rotableBondCount = getNumberProperties(data, 'Rotatable Bond Count'); return rotableBondCount; } //# sourceMappingURL=getRotableBondCount.js.map