mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-21 19:01:53 +02:00
13 lines
174 B
JavaScript
13 lines
174 B
JavaScript
|
define( [
|
||
|
"./whitespace"
|
||
|
], function( whitespace ) {
|
||
|
|
||
|
"use strict";
|
||
|
|
||
|
return new RegExp(
|
||
|
"^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$",
|
||
|
"g"
|
||
|
);
|
||
|
|
||
|
} );
|