From 5ac9dc4e4d295013a8f629f743150be88070f7c4 Mon Sep 17 00:00:00 2001 From: Joshua Holbrook Date: Fri, 6 Jul 2012 22:02:03 -0800 Subject: [PATCH] [fix] fs.exists was moved to fs.exists --- test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.js b/test.js index ea45c2d..d4b24ae 100755 --- a/test.js +++ b/test.js @@ -7,7 +7,7 @@ var gd = require('./gd'); var source = './funnyfog.png'; var target = './funnyfog.thumb.png'; -if (path.exists(target)) fs.unlink(target); +if (fs.exists(target)) fs.unlink(target); gd.openPng( source,