UNPKG

sic-code-list

Version:

Standard industrial classification SIC code list

13 lines (10 loc) 230 B
import { lookupSICCode } from "sic-code-list"; async function fetchSICCode() { try { const data = await lookupSICCode([100, 200]); console.log(data); } catch (error) { console.error(error); } } fetchSICCode();