Skip to content

Commit

Permalink
fix #877
Browse files Browse the repository at this point in the history
  • Loading branch information
uNmAnNeR committed Jun 20, 2023
1 parent 68ebe8d commit 457e63d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/guide.html
Expand Up @@ -139,11 +139,11 @@ <h2 id="getting-started" class="section-h"><a href="#getting-started">Getting St
mask: '+7 (000) 000-00-00',
// ...and other options
});
var maskedValue = masked.resolve('71234567890');
masked.resolve('71234567890');

// mask keeps state after resolving
console.log(masked.value); // same as maskedValue
// get unmasked value
// now you can access masked value
console.log(masked.value);
// and get unmasked value
console.log(masked.unmaskedValue);</code></pre>

<h2 id="masked" class="section-h"><a href="#masked">Masked</a></h2>
Expand Down

0 comments on commit 457e63d

Please sign in to comment.