Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
variety
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fact-gitdep
variety
Commits
40a8b272
Commit
40a8b272
authored
Oct 02, 2017
by
Gian Marco Gherardi
Committed by
James Cropcho
Oct 02, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PR for #136 (#137)
* Fix for #136 * Fixed mixed tab/spaces
parent
3749c170
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
variety.js
variety.js
+4
-2
No files found.
variety.js
View file @
40a8b272
...
@@ -140,9 +140,11 @@ Released by Maypop Inc, © 2012-2017, under the MIT License. */
...
@@ -140,9 +140,11 @@ Released by Maypop Inc, © 2012-2017, under the MIT License. */
$plugins
.
execute
(
'onConfig'
,
config
);
$plugins
.
execute
(
'onConfig'
,
config
);
var
varietyTypeOf
=
function
(
thing
)
{
var
varietyTypeOf
=
function
(
thing
)
{
if
(
typeof
thing
===
'undefined'
)
{
throw
'varietyTypeOf() requires an argument'
;
}
if
(
!
arguments
.
length
)
{
throw
'varietyTypeOf() requires an argument'
;
}
if
(
typeof
thing
!==
'object'
)
{
if
(
typeof
thing
===
'undefined'
)
{
return
'undefined'
;
}
else
if
(
typeof
thing
!==
'object'
)
{
// the messiness below capitalizes the first letter, so the output matches
// the messiness below capitalizes the first letter, so the output matches
// the other return values below. -JC
// the other return values below. -JC
var
typeofThing
=
typeof
thing
;
// edgecase of JSHint's "singleGroups"
var
typeofThing
=
typeof
thing
;
// edgecase of JSHint's "singleGroups"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment