(s)
| 26 | // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | |
| 28 | function strip(s) { |
| 29 | return s.replace(/\s/g, ''); |
| 30 | } |
| 31 | |
| 32 | assertEquals('function(){}', strip((function () { }).toString())); |
| 33 | assertEquals('functionanonymous(){}', strip(new Function().toString())); |
no outgoing calls
no test coverage detected