View difference between Paste ID: Y23VjLcA and d7GEFiEX
SHOW: | | - or go back to the newest paste.
1
/**
2
 * @NModuleScope Public
3
 */
4
define(["N/search"], returnLibraryFunctions);
5
6-
function returnLibraryFunctions(xml) {
6+
function returnLibraryFunctions(search) {
7
	function function1(search) {
8
		log.debug('Function 1 called');
9
	}
10
11
	var functionsObj = {};
12
	functionsObj.function1 = function1;
13
14
	return functionsObj;
15
}