NSCoder
09/29/2019, 5:25 PMTimothy
09/29/2019, 9:24 PMjarens
09/30/2019, 1:47 PM//variables to hold module
var search;
//load module
require(['N/search'],function(s){
//when loaded assign back to variable
search = s;
console.log("2.0 search module loaded");
});
You can then store this as a snippet in Dev Tools for easy access.NSCoder
09/30/2019, 3:33 PM