tuiHoneyPot

front and back end of my TUI honeypot
Log | Files | Refs | README

rtrimCSS.js (174B)


      1 define( [
      2 	"./whitespace"
      3 ], function( whitespace ) {
      4 
      5 "use strict";
      6 
      7 return new RegExp(
      8 	"^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$",
      9 	"g"
     10 );
     11 
     12 } );