( options )
| 1809 | |
| 1810 | // Convert String-formatted options into Object-formatted ones and store in cache |
| 1811 | function createOptions( options ) { |
| 1812 | var object = optionsCache[ options ] = {}; |
| 1813 | jQuery.each( options.split( core_rspace ), function( _, flag ) { |
| 1814 | object[ flag ] = true; |
| 1815 | }); |
| 1816 | return object; |
| 1817 | } |
| 1818 | |
| 1819 | /* |
| 1820 | * Create a callback list using the following parameters: |
no outgoing calls
no test coverage detected
searching dependent graphs…