Minor indentation fixes in gflib.js

Despite it being deprecated 🙈
This commit is contained in:
John J. Camilleri
2019-06-10 09:29:43 +02:00
parent d6a1e87f4a
commit 63606fd2d0

View File

@@ -391,11 +391,11 @@ GFConcrete.prototype.unlex = function (ts) {
};
GFConcrete.prototype.tagIt = function (obj, tag) {
if (isString(obj)) {
var o = new String(obj);
o.setTag(tag);
return o;
var o = new String(obj);
o.setTag(tag);
return o;
} else {
var me = arguments.callee;
var me = arguments.callee;
if (arguments.length == 2) {
me.prototype = obj;
var o = new me();