File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 3
3
4
4
// module Data.String.Regex
5
5
6
- exports . showRegex$prime = function ( r ) {
6
+ exports [ " showRegex'" ] = function ( r ) {
7
7
return "" + r ;
8
8
} ;
9
9
10
- exports . regex$prime = function ( s1 ) {
10
+ exports [ " regex'" ] = function ( s1 ) {
11
11
return function ( s2 ) {
12
12
return new RegExp ( s1 , s2 ) ;
13
13
} ;
@@ -60,7 +60,7 @@ exports.replace = function (r) {
60
60
} ;
61
61
} ;
62
62
63
- exports . replace$prime = function ( r ) {
63
+ exports [ " replace'" ] = function ( r ) {
64
64
return function ( f ) {
65
65
return function ( s2 ) {
66
66
return s2 . replace ( r , function ( match ) {
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ exports.charAt = function (i) {
17
17
} ;
18
18
} ;
19
19
20
- exports . $$ char = function ( s ) {
20
+ exports [ " char" ] = function ( s ) {
21
21
if ( s . length !== 1 ) return s . charAt ( 0 ) ;
22
22
throw new Error ( "Data.String.Unsafe.char: Expected string of length 1." ) ;
23
23
} ;
You can’t perform that action at this time.
0 commit comments