* Compare against another script. * @param {Script} script * @returns {Number}
(script)
| 306 | */ |
| 307 | |
| 308 | compare(script) { |
| 309 | assert(Script.isScript(script)); |
| 310 | return this.raw.compare(script.raw); |
| 311 | } |
| 312 | |
| 313 | /** |
| 314 | * Clear the script. |
no test coverage detected