( flags )
| 962 | |
| 963 | // Convert String-formatted flags into Object-formatted ones and store in cache |
| 964 | function createFlags( flags ) { |
| 965 | var object = flagsCache[ flags ] = {}, |
| 966 | i, length; |
| 967 | flags = flags.split( /\s+/ ); |
| 968 | for ( i = 0, length = flags.length; i < length; i++ ) { |
| 969 | object[ flags[i] ] = true; |
| 970 | } |
| 971 | return object; |
| 972 | } |
| 973 | |
| 974 | /* |
| 975 | * Create a callback list using the following parameters: |
no outgoing calls
no test coverage detected
searching dependent graphs…