Skip to content

Commit

Permalink
Merge pull request alexei#96 from alexei/feature/strict-mode
Browse files Browse the repository at this point in the history
Strict mode - adjusts style, generates minified version
  • Loading branch information
alexei committed Feb 7, 2016
2 parents ea30f12 + 3e2c493 commit d137553
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/sprintf.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/sprintf.min.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion src/sprintf.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
(function(window) {
'use strict';
'use strict'

var re = {
not_string: /[^s]/,
not_bool: /[^t]/,
Expand Down
1 change: 1 addition & 0 deletions test/test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
'use strict';

var assert = require("assert"),
sprintfjs = require("../src/sprintf.js"),
sprintf = sprintfjs.sprintf,
Expand Down

0 comments on commit d137553

Please sign in to comment.