borrowstag.js 180 B

1234567891011121314
  1. /** @namespace
  2. @borrows trstr as trim
  3. */
  4. var util = {
  5. "trim": trstr
  6. };
  7. /**
  8. Remove whitespace from around a string.
  9. @param {string} str
  10. */
  11. function trstr(str) {
  12. }