This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * @description Converts between JSON Objects and GlideRecords | |
| * @namespace | |
| * @type {Class} | |
| */ | |
| var JSONtoGlide = Class.create(); | |
| JSONtoGlide.prototype = { | |
| /** | |
| * @description Converts an object into a new GlideRecord | |
| * @param {Object} json A json object |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * JSUtil already has some utility functions, Some more utility functions. | |
| * Written by [email protected] | |
| * Re-written for Service Now from underscore.js: http://underscorejs.org/ | |
| * | |
| */ | |
| var JSUtil2 = Class.create(); |