Вход Регистрация
Файл: library/wysihtml5/src/lang/object.js
Строк: 28
<?php
wysihtml5
.lang.object = function(obj) {
  return {
    
/**
     * @example
     *    wysihtml5.lang.object({ foo: 1, bar: 1 }).merge({ bar: 2, baz: 3 }).get();
     *    // => { foo: 1, bar: 2, baz: 3 }
     */
    
merge: function(otherObj) {
      for (var 
i in otherObj) {
        
obj[i] = otherObj[i];
      }
      return 
this;
    },
    
    
get: function() {
      return 
obj;
    },
    
    
/**
     * @example
     *    wysihtml5.lang.object({ foo: 1 }).clone();
     *    // => { foo: 1 }
     */
    
clone: function() {
      var 
newObj = {},
          
i;
      for (
i in obj) {
        
newObj[i] = obj[i];
      }
      return 
newObj;
    },
    
    
/**
     * @example
     *    wysihtml5.lang.object([]).isArray();
     *    // => true
     */
    
isArray: function() {
      return 
Object.prototype.toString.call(obj) === "[object Array]";
    }
  };
};
?>
Онлайн: 1
Реклама