not really known
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

14 lines
302 B

define(["sugar-web/env", "sugar-web/datastore/sugarizer", "sugar-web/datastore/sugaros"], function(env, sugarizer, sugaros) {
'use strict';
var datastore ;
if (env.isSugarizer()) {
datastore = sugarizer;
} else {
datastore = sugaros;
}
return datastore;
});