The InputEvent.isComposing read-only property returns a boolean value indicating if the event is fired after compositionstart and before compositionend.
A boolean.
const inputEvent = new InputEvent("syntheticInput", false);
console.log(inputEvent.isComposing); // return false