by load them in as a module do you mean store them...
# suitescript
j
by load them in as a module do you mean store them as another js file like this
Copy code
// credentials.js
define([], function() {
    return {
        apikey: ''
    };
});

// script.js
define(['/path/to/credentials'], function(credentials) {
    // credentials.apikey
});