* @param {!Array<!Action>} actions * @return {boolean}
(actions)
| 1004 | * @return {boolean} |
| 1005 | */ |
| 1006 | function isIdle(actions) { |
| 1007 | return actions.length === 0 || actions.every((a) => a.type === Action.Type.PAUSE && !a.duration) |
| 1008 | } |
| 1009 | |
| 1010 | /** |
| 1011 | * Script used to compute the offset from the center of a DOM element's first |
no outgoing calls
no test coverage detected