UNPKG

chrec-core

Version:

ChRec's core business logic and model for testing HTML locator robustness

10 lines (9 loc) 255 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const uuid_1 = require("uuid"); class Identificable { constructor(id) { id ? (this.id = id) : (this.id = uuid_1.v4()); } } exports.Identificable = Identificable;