14 lines
285 B
JavaScript
14 lines
285 B
JavaScript
import assert from "assert";
|
|
|
|
export function assertNoOwnProperties(obj) {
|
|
assert.equal(Object.getOwnPropertyNames(obj).length, 0);
|
|
}
|
|
|
|
export function assertHasOwnProperty() {}
|
|
|
|
export function assertLacksOwnProperty() {}
|
|
|
|
export function multiline(arr) {
|
|
return arr.join("\n");
|
|
}
|