prhfi-bis
Version:
A small wrapper of Finnish Patent and Registration Office BIS v1 api
17 lines (13 loc) • 339 B
JavaScript
const subject = require("./index.js");
async function testWithCompanyId() {
let bis = new subject.BisApi();
const res = await bis.getCompanyWithParam({
name: "KES",
companyRegistrationFrom: "1999-01-01",
});
console.log(res);
}
async function test2() {
}
testWithCompanyId();
//test2();