(oldStr, newStr, options)
| 265 | |
| 266 | var characterDiff = new Diff(); |
| 267 | function diffChars(oldStr, newStr, options) { |
| 268 | return characterDiff.diff(oldStr, newStr, options); |
| 269 | } |
| 270 | |
| 271 | function generateOptions(options, defaults) { |
| 272 | if (typeof options === 'function') { |
nothing calls this directly
no outgoing calls
no test coverage detected