Files

7 lines
156 B
JavaScript
Raw Permalink Normal View History

export var inline = false;
export function inlineMock(nextInline) {
if (typeof nextInline === 'boolean') {
inline = nextInline;
}
return inline;
}