File size: 347 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 |
import 'calypso/state/document-head/init';
/**
* Returns an array of document link objects as set by the DocumentHead
* component or setDocumentHeadLink action.
* @param {Object} state Global state tree
* @returns {Object[]} Array of link objects
*/
export function getDocumentHeadLink( state ) {
return state.documentHead.link;
}
|