MCPcopy Index your code
hub / github.com/sql-js/sql.js / createOptions

Function createOptions

documentation/javascript/application.js:1811–1817  ·  view source on GitHub ↗
( options )

Source from the content-addressed store, hash-verified

1809
1810// Convert String-formatted options into Object-formatted ones and store in cache
1811function 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:

Callers 1

application.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…