File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
lib/node_modules/@stdlib/assert/is-data-property-in/examples Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1616* limitations under the License.
1717*/
1818
19- /* eslint-disable object-curly-newline */
19+ /* eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing */
2020
2121'use strict' ;
2222
@@ -26,19 +26,19 @@ var bool = isDataPropertyIn( [ 'a' ], 'length' );
2626console . log ( bool ) ;
2727// => true
2828
29- bool = isDataPropertyIn ( { 'a' : 'b' } , 'a' ) ;
29+ bool = isDataPropertyIn ( { 'a' : 'b' } , 'a' ) ;
3030console . log ( bool ) ;
3131// => true
3232
3333bool = isDataPropertyIn ( [ 'a' ] , 0 ) ;
3434console . log ( bool ) ;
3535// => true
3636
37- bool = isDataPropertyIn ( { 'null' : false } , null ) ;
37+ bool = isDataPropertyIn ( { 'null' : false } , null ) ;
3838console . log ( bool ) ;
3939// => true
4040
41- bool = isDataPropertyIn ( { '[object Object]' : false } , { } ) ;
41+ bool = isDataPropertyIn ( { '[object Object]' : false } , { } ) ;
4242console . log ( bool ) ;
4343// => true
4444
You can’t perform that action at this time.
0 commit comments