MCPcopy Index your code
hub / github.com/jquery/jquery / createOptions

Function createOptions

src/callbacks.js:6–12  ·  view source on GitHub ↗
( options )

Source from the content-addressed store, hash-verified

4
5// Convert String-formatted options into Object-formatted ones
6function createOptions( options ) {
7 var object = {};
8 jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) {
9 object[ flag ] = true;
10 } );
11 return object;
12}
13
14/*
15 * Create a callback list using the following parameters:

Callers 1

callbacks.jsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected