Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
jio_mebibou
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Alexandra Rogova
jio_mebibou
Commits
ba465421
Commit
ba465421
authored
Apr 17, 2014
by
Tristan Cavelier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ram.hasOwnProperty is not a function fix
parent
d7c4e8ca
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
5 deletions
+8
-5
src/jio.storage/localstorage.js
src/jio.storage/localstorage.js
+8
-5
No files found.
src/jio.storage/localstorage.js
View file @
ba465421
...
...
@@ -64,6 +64,9 @@
],
function
(
exports
,
jIO
)
{
"
use strict
"
;
var
ram
=
{},
memorystorage
,
localstorage
,
hasOwnProperty
=
Function
.
prototype
.
call
.
bind
(
Object
.
prototype
.
hasOwnProperty
);
/**
* Checks if an object has no enumerable keys
*
...
...
@@ -71,17 +74,16 @@
* @return {Boolean} true if empty, else false
*/
function
objectIsEmpty
(
obj
)
{
/*jslint forin: true */
var
k
;
for
(
k
in
obj
)
{
if
(
obj
.
hasOwnProperty
(
k
))
{
if
(
hasOwnProperty
(
obj
,
k
))
{
return
false
;
}
}
return
true
;
}
var
ram
=
{},
memorystorage
,
localstorage
;
/*
* Wrapper for the localStorage used to simplify instion of any kind of
* values
...
...
@@ -414,11 +416,12 @@
"
^
"
+
jIO
.
Query
.
stringEscapeRegexpCharacters
(
this
.
_localpath
)
+
"
/[^/]+$
"
);
/*jslint forin: true */
if
(
options
.
query
===
undefined
&&
options
.
sort_on
===
undefined
&&
options
.
select_list
===
undefined
)
{
rows
=
[];
for
(
i
in
this
.
_database
)
{
if
(
this
.
_database
.
hasOwnProperty
(
i
))
{
if
(
hasOwnProperty
(
this
.
_database
,
i
))
{
// filter non-documents
if
(
path_re
.
test
(
i
))
{
row
=
{
value
:
{}
};
...
...
@@ -434,7 +437,7 @@
}
else
{
// create jio query object from returned results
for
(
i
in
this
.
_database
)
{
if
(
this
.
_database
.
hasOwnProperty
(
i
))
{
if
(
hasOwnProperty
(
this
.
_database
,
i
))
{
if
(
path_re
.
test
(
i
))
{
document_list
.
push
(
this
.
_storage
.
getItem
(
i
));
}
...
...
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