UNPKG

@chemistry/cif-2-json

Version:

Tool for converting CIF to JSON and manipulate with content

15 lines (12 loc) 300 B
import { normalizeCifString, parse, } from "./index"; describe("index", () => { it("should define parse method", () => { expect(parse).toBeDefined(); }); it("should define normalizeCifString method", () => { expect(normalizeCifString).toBeDefined(); }); });