Merge pull request #1172 from glowing-bear/fix-jshint

irc-utils: declare use strict on first line
This commit is contained in:
Lorenz Hübschle-Schneider 2020-12-23 10:26:41 +01:00 committed by GitHub
commit 88a95c0f76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,9 +1,10 @@
/**
* Portable utilities for IRC.
*/
'use strict';
import {sortBy, pluck} from "underscore";
'use strict';
var IrcUtils = angular.module('IrcUtils', []);