Skip to content

Commit 781c0dc

Browse files
committed
Fix merge conflicts
1 parent c8bb41e commit 781c0dc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Cleave.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ Cleave.prototype = {
307307
if (pps.prefix) {
308308
if (pps.tailPrefix) {
309309
value = value + pps.prefix;
310-
} else if(value !== pps.prefix) {
310+
} else {
311311
value = pps.prefix + value;
312312
}
313313

src/Cleave.react.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ var cleaveReactClass = CreateReactClass({
359359
if (pps.prefix) {
360360
if (pps.tailPrefix) {
361361
value = value + pps.prefix;
362-
} else if (value !== pps.prefix) {
362+
} else {
363363
value = pps.prefix + value;
364364
}
365365

0 commit comments

Comments
 (0)