Source: borrows1.js

// http://usejsdoc.org/tags-borrows.html
//Duplicate the documentation for trstr as util.trim

/**
 * @namespace
 * @borrows trstr as trim
 */
var borrows1util = {
    trim: trstr
};

/** 
 * Remove whitespace from around a string.
 * @param {string} str
 */
function trstr(str) {
}