Skip to content

Commit

Permalink
naturalSort -> natsort
Browse files Browse the repository at this point in the history
  • Loading branch information
bubkoo committed Mar 30, 2016
1 parent 94f5190 commit 0f363d5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var naturalSort = function (options) {
var natsort = function (options) {

'use strict';

Expand Down Expand Up @@ -134,10 +134,10 @@ var naturalSort = function (options) {
} else if (typeof define === 'function' && define.amd) {
define([], factory);
} else if (typeof exports === 'object') {
exports['naturalSort'] = factory();
exports['natsort'] = factory();
} else {
root['naturalSort'] = factory();
root['natsort'] = factory();
}
})(this, function () {
return naturalSort;
return natsort;
});

0 comments on commit 0f363d5

Please sign in to comment.