7 lines
156 B
JavaScript
7 lines
156 B
JavaScript
|
export var inline = false;
|
||
|
export function inlineMock(nextInline) {
|
||
|
if (typeof nextInline === 'boolean') {
|
||
|
inline = nextInline;
|
||
|
}
|
||
|
return inline;
|
||
|
}
|