UNPKG

useful-string

Version:

useful string functions

33 lines (26 loc) 796 B
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>muigui/useful-string</title> <link href="../node_modules/mocha/mocha.css" rel="stylesheet" type="text/css"> </head> <body> <div id="mocha"></div> <script src="../node_modules/mocha/mocha.js" type="text/javascript"></script> <script src="../node_modules/chai/chai.js" type="text/javascript"></script> <script type="text/javascript"> mocha.setup( { ignoreLeaks : true, ui : 'tdd' } ); </script> <script src="../build/build.js" type="text/javascript"></script> <script src="string.test.js" type="text/javascript"></script> <script type="text/javascript"> var string = require( 'useful-string' ), expect = chai.expect; mocha.run(); </script> </body> </html>