Skip to content

Commit 2f78f0d

Browse files
committed
Version 3.3.4
1 parent 7d7cdc4 commit 2f78f0d

File tree

8 files changed

+19
-15
lines changed

8 files changed

+19
-15
lines changed

CHANGELOG.markdown

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11

22
# Changelog
33

4+
### 3.3.4
5+
* set standalone in browserify `s`
6+
47
### 3.3.1 / 3.3.2 / 3.3.3
58
* fix release script
69

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "underscore.string",
3-
"version": "3.3.3",
3+
"version": "3.3.4",
44
"description": "String manipulation extensions for Underscore.js javascript library.",
55
"homepage": "http://epeli.github.com/underscore.string/",
66
"contributors": [

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "underscore.string",
33
"repo": "epeli/underscore.string",
44
"description": "String manipulation extensions for Underscore.js javascript library",
5-
"version": "3.3.3",
5+
"version": "3.3.4",
66
"keywords": [
77
"underscore",
88
"string"

dist/underscore.string.js

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
* Underscore.string is freely distributable under the terms of the MIT license.
55
* Documentation: https://github.com/epeli/underscore.string
66
* Some code is borrowed from MooTools and Alexandru Marasteanu.
7-
* Version '3.3.3'
7+
* Version '3.3.4'
88
* @preserve
99
*/
1010

11-
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
11+
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.s = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
1212
var trim = require('./trim');
1313
var decap = require('./decapitalize');
1414

@@ -314,7 +314,7 @@ module.exports = function include(str, needle) {
314314
* Underscore.string is freely distributable under the terms of the MIT license.
315315
* Documentation: https://github.com/epeli/underscore.string
316316
* Some code is borrowed from MooTools and Alexandru Marasteanu.
317-
* Version '3.3.3'
317+
* Version '3.3.4'
318318
* @preserve
319319
*/
320320

@@ -326,7 +326,7 @@ function s(value) {
326326
this._wrapped = value;
327327
}
328328

329-
s.VERSION = '3.3.3';
329+
s.VERSION = '3.3.4';
330330

331331
s.isBlank = require('./isBlank');
332332
s.stripTags = require('./stripTags');
@@ -1365,4 +1365,5 @@ module.exports = function wrap(str, options){
13651365
}
13661366
};
13671367

1368-
},{"./helper/makeString":20}]},{},[25]);
1368+
},{"./helper/makeString":20}]},{},[25])(25)
1369+
});

dist/underscore.string.min.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Underscore.string is freely distributable under the terms of the MIT license.
55
* Documentation: https://github.com/epeli/underscore.string
66
* Some code is borrowed from MooTools and Alexandru Marasteanu.
7-
* Version '3.3.3'
7+
* Version '3.3.4'
88
* @preserve
99
*/
1010

@@ -16,7 +16,7 @@ function s(value) {
1616
this._wrapped = value;
1717
}
1818

19-
s.VERSION = '3.3.3';
19+
s.VERSION = '3.3.4';
2020

2121
s.isBlank = require('./isBlank');
2222
s.stripTags = require('./stripTags');

package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Package.describe({
44
name: 'underscorestring:underscore.string',
55
summary: 'underscore.string (official): String manipulation extensions for Underscore.js javascript library.',
6-
version: '3.3.3',
6+
version: '3.3.4',
77
git: 'https://github.com/epeli/underscore.string.git',
88
documentation: 'README.markdown'
99
});

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "underscore.string",
3-
"version": "3.3.3",
3+
"version": "3.3.4",
44
"description": "String manipulation extensions for Underscore.js javascript library.",
55
"homepage": "http://epeli.github.com/underscore.string/",
66
"contributors": [

0 commit comments

Comments
 (0)