PHP Classes

File: public/assets/local/js/ie.fix.min.js

Recommend this page to a friend!
  Classes of Aby Dahana   Aksara   public/assets/local/js/ie.fix.min.js   Download  
File: public/assets/local/js/ie.fix.min.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Aksara
A CodeIgniter based API and CRUD generator
Author: By
Last change: Fix coding standard
Date: 4 months ago
Size: 993 bytes
 

Contents

Class file image Download
/** * A script library to import the javascript / css file on the fly * * @author Aby Dahana <abydahana@gmail.com> * @copyright (c) Aksara Laboratory <https://aksaracms.com> * @license MIT License * * This source file is subject to the MIT license that is bundled with this * source code in the LICENSE.txt file. */ if (typeof Object.assign !== 'function') { Object.assign = function(target) { if (target === null) { throw new TypeError('Cannot convert undefined or null to object'); } target = Object(target); for (var index = 1; index < arguments.length; index++) { var source = arguments[index]; if (source !== null) { for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } } return target; }; }