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