Commit e903ef63 authored by Calvin Metcalf's avatar Calvin Metcalf
Browse files

and we pass the tests

parent aa1a872a
Loading
Loading
Loading
Loading
+8 −5
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@ function proj4(fromProj,toProj,coord){
      if(c.length === 3){
        return [transformedArray.x, transformedArray.y, transformedArray.z];
      }else{
        return [transformedArray.x,transformedArrayy];
        return [transformedArray.x, transformedArray.y];
      }
    }else{
      return proj4.transform(fromProj,toProj,c);
@@ -442,6 +442,9 @@ proj4.Class = function() {
  return Class;
};

(function(){
	/*global module*/
	if(typeof module !== 'undefined'){
		module.exports = proj4;
	}
})();