Skip to content

Commit

Permalink
refactor: remove modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
adriancmiranda committed May 19, 2018
1 parent 9666d05 commit b4f2f9d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 9 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ startGroup: '('
endGroup: ')'
startCharset: '['
endCharset: ']'
modifier(input)
quote(value)
value(value)
plus(value)
Expand Down
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
*
* ~~~~~~~~~~ rx4d v1.3.0
*
* @commit f1195d99aacad1e1c3c4353332c84910bb3e0625
* @moment Friday, May 18, 2018 10:56 PM
* @commit 9666d051dc8d838308b83018598ef21ddb2b4076
* @moment Friday, May 18, 2018 11:14 PM
* @homepage https://github.com/adriancmiranda/rx4d#readme
* @author Adrian C. Miranda
* @license (c) 2016-2021 Adrian C. Miranda
Expand Down Expand Up @@ -230,7 +230,6 @@
endGroup: ')',
startCharset: '[',
endCharset: ']',
modifier: function (self, last, input) { return (self + '(?' + input + ')'); },
quote: function (self, last, input) { return ('' + self + (val(input))); },
value: function (self, last, input) { return ('' + self + (src(input))); },
plus: function (self, last, input) { return ('' + self + (src(input))); },
Expand Down Expand Up @@ -277,4 +276,5 @@
exports.val = val;

Object.defineProperty(exports, '__esModule', { value: true });

})));
6 changes: 3 additions & 3 deletions index.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b4f2f9d

Please sign in to comment.