JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://cdn.rawgit.com/digitalBush/jquery.maskedinput/1.4.0/dist/jquery.maskedinput.js"></script>
<input type="text" id="test"></input>
<button id="submit">Submit</button>
<div id="results"></div>

JavaScript

$(function(){
    $("#test").mask("99-99-99-999");
    $("#submit").click(function(){
        $("#results").text("You entered: " + $("#test").maskVal());
    });
});

$.fn.maskVal = function () {
    return $(this).mask();
};