From 6a1aca1e47099ca9b85b3f9ec6be5465119035e0 Mon Sep 17 00:00:00 2001 From: DCoded <dsoloha@live.com> Date: Tue, 21 May 2019 20:29:14 -0400 Subject: [PATCH] Converted spaes to tabs --- src/endWeek/saNanny.js | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/endWeek/saNanny.js b/src/endWeek/saNanny.js index bd5addd1376..6f7227f046f 100644 --- a/src/endWeek/saNanny.js +++ b/src/endWeek/saNanny.js @@ -3,25 +3,25 @@ * @returns {string} */ window.saNanny = function saNanny(slave) { - "use strict"; + "use strict"; const V = State.variables; - /* eslint-disable */ + /* eslint-disable */ const pronouns = getPronouns(slave); - const he = pronouns.pronoun; - const him = pronouns.object; - const his = pronouns.possessive; - const hers = pronouns.possessivePronoun; - const himself = pronouns.objectReflexive; - const boy = pronouns.noun; - const He = capFirstChar(he); - const His = capFirstChar(his); - /* eslint-enable */ + const he = pronouns.pronoun; + const him = pronouns.object; + const his = pronouns.possessive; + const hers = pronouns.possessivePronoun; + const himself = pronouns.objectReflexive; + const boy = pronouns.noun; + const He = capFirstChar(he); + const His = capFirstChar(his); + /* eslint-enable */ - let t = `works as a nanny this week. `; + let t = `works as a nanny this week. `; - if (V.Matron) { - t += `effects here`; - } + if (V.Matron) { + t += `effects here`; + } - return t; + return t; }; -- GitLab