# raekwon **Repository Path**: mirrors_mikeal/raekwon ## Basic Information - **Project Name**: raekwon - **Description**: Binds a multi-dimensional array of partial strings and elements to a host element. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2025-09-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Raekwon Binds a multi-dimensional array of partial strings and elements to a host element.

```javascript let sub = raekwon.observed(['
']) let arr = ['

', 'Test', '

', sub] let el = document.createElement('test') let proxy = raekwon(el, arr) setTimeout(() => { el.innerHTML === '

Test

' let div = document.createElement('div') div.id = 'test-next' proxy.push(div) setTimeout(() => { el.innerHTML === '

Test

' }, 10) }, 10) ```