UNPKG

useful-copy

Version:

useful deep/shallow copy/update

33 lines (26 loc) 792 B
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>muigui/useful-copy</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="copy.test.js" type="text/javascript"></script> <script type="text/javascript"> var copy = require( 'useful-copy' ), expect = chai.expect; mocha.run(); </script> </body> </html>