Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.
The InputEvent.isComposing read-only property returns a Boolean value indicating if the event is fired after compositionstart and before compositionend.
Syntax
var bool = event.isComposing;
Example
var inputEvent = new InputEvent("syntheticInput", false);
console.log(inputEvent.isComposing); // return false