* Validate a begin option.
(value)
| 594 | * Validate a <code>begin</code> option. |
| 595 | */ |
| 596 | function validateBegin(value) { |
| 597 | if (isFunction(value)) { |
| 598 | return value; |
| 599 | } |
| 600 | if (value != null) { |
| 601 | console.warn("VelocityJS: Trying to set 'begin' to an invalid value:", value); |
| 602 | } |
| 603 | } |
| 604 | /** |
| 605 | * Validate a <code>complete</code> option. |
| 606 | */ |
no test coverage detected
searching dependent graphs…