Skip to content
This repository was archived by the owner on Jan 24, 2019. It is now read-only.

Commit 18524ed

Browse files
committed
jshint.......
1 parent f177748 commit 18524ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/mask/mask.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ angular.module('ui.mask',[])
265265
// of the maskable char gets deleted, we'll still be able to strip
266266
// it in the unmaskValue() preprocessing.
267267
maskComponents = maskPlaceholder.replace(/[_]+/g, '_').replace(/([^_]+)([a-zA-Z0-9])([^_])/g, '$1$2_$3').split('_');
268-
maskProcessed = !!(maskCaretMap.length > 1);
268+
maskProcessed = maskCaretMap.length > 1 ? true : false;
269269
}
270270

271271
function blurHandler(){

0 commit comments

Comments
 (0)