# learnpress/4.2.0/assets/src/js/utils/extend.js

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.2.0. 11 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.2.0/code/assets/src/js/utils/extend.js
- Raw: https://pluginprobe.com/plugins/learnpress/4.2.0/raw/assets/src/js/utils/extend.js
- Modified: 2022-11-14T06:50:54+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/learnpress/4.2.0/code/assets/src/js/utils/extend.js#L10-L20`.

```javascript
export default function() {
	window.LP = window.LP || {};

	if ( typeof arguments[ 0 ] === 'string' ) {
		LP[ arguments[ 0 ] ] = LP[ arguments[ 0 ] ] || {};
		LP[ arguments[ 0 ] ] = jQuery.extend( LP[ arguments[ 0 ] ], arguments[ 1 ] );
	} else {
		LP = jQuery.extend( LP, arguments[ 0 ] );
	}
}

```
